<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 15:59:00 JST 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>PFS-JIRA</title>
    <link>https://pfspipe.ipmu.jp/jira</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.3.4</version>
        <build-number>803005</build-number>
        <build-date>13-09-2019</build-date>
    </build-info>


<item>
            <title>[PIPE2D-859] Weekly build fails for w.2021.25</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/PIPE2D-859</link>
                <project id="10002" key="PIPE2D">DRP 2-D Pipeline</project>
                    <description>&lt;p&gt;With the current version of master branches, the weekly build fails. See error snippet below:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
ERROR: testObjectProducts (__main__.ProductionTestCase_bmn)
Test that object products exist
----------------------------------------------------------------------
Traceback (most recent call last):
  File &lt;span class=&quot;code-quote&quot;&gt;&quot;/scratch/pprice/jenkins/weekly/2021-06-20/build/stack/miniconda3-4.5.12-1172c30/Linux64/pfs_pipe2d/w.2021.25/python/pfs/pipe2d/weekly/test_weekly.py&quot;&lt;/span&gt;, line 49, in testObjectProducts
    &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; target in self.design:
TypeError: iter() returned non-iterator of type &lt;span class=&quot;code-quote&quot;&gt;&apos;NotImplementedError&apos;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="16898">PIPE2D-859</key>
            <summary>Weekly build fails for w.2021.25</summary>
                <type id="3" iconUrl="https://pfspipe.ipmu.jp/jira/secure/viewavatar?size=xsmall&amp;avatarId=10518&amp;avatarType=issuetype">Task</type>
                                            <priority id="3" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/priorities/major.svg">Major</priority>
                        <status id="10002" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/statuses/generic.png" description="The issue is resolved, reviewed, and merged">Done</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Done</resolution>
                                        <assignee username="price">price</assignee>
                                    <reporter username="hassan">hassan</reporter>
                        <labels>
                    </labels>
                <created>Mon, 21 Jun 2021 18:03:23 +0000</created>
                <updated>Tue, 29 Jun 2021 13:31:06 +0000</updated>
                            <resolved>Tue, 29 Jun 2021 13:31:06 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                <comments>
                            <comment id="21570" author="hassan" created="Sun, 27 Jun 2021 23:21:11 +0000"  >&lt;p&gt;Problem seems to be a consequence of the changes made in &lt;a href=&quot;https://pfspipe.ipmu.jp/jira/browse/PIPE2D-762&quot; title=&quot;pfsConfig.selectFiber returns a transposed array with an extra dimension&quot; class=&quot;issue-link&quot; data-issue-key=&quot;PIPE2D-762&quot;&gt;&lt;del&gt;PIPE2D-762&lt;/del&gt;&lt;/a&gt;. With the changes made there, the return value of &lt;tt&gt;pfsDesign.selectFiber(fiberId)&lt;/tt&gt; can now be a scalar as well as a sequence. A scalar return value its currently not supported in the 2D simulator (specifically &lt;tt&gt;lightSource.py&lt;/tt&gt;), resulting in the failure.&lt;/p&gt;

&lt;p&gt;A fix has been pushed to the ticket branch of this issue. But this will be discussed with Paul Price this week to see whether this is better fixed in the datamodel code.&lt;/p&gt;</comment>
                            <comment id="21571" author="hassan" created="Sun, 27 Jun 2021 23:23:23 +0000"  >&lt;p&gt;Example simulator run demonstrating the problem:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
makeSim --visit 47 --detector r1 --pfsDesignId 1 --exptime 1800 --type object
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Run against weekly data (see eg &lt;tt&gt;/scratch/hassans/weekly/&lt;a href=&quot;https://pfspipe.ipmu.jp/jira/browse/PIPE2D-859&quot; title=&quot;Weekly build fails for w.2021.25&quot; class=&quot;issue-link&quot; data-issue-key=&quot;PIPE2D-859&quot;&gt;&lt;del&gt;PIPE2D-859&lt;/del&gt;&lt;/a&gt;&lt;/tt&gt;).&lt;/p&gt;</comment>
                            <comment id="21587" author="price" created="Mon, 28 Jun 2021 19:56:02 +0000"  >&lt;p&gt;The weekly doesn&apos;t use the simulator (only its outputs), so we need to fix this in datamodel. I removed some functionality recently that apparently is used in testing the weekly, so it needs to go back in.&lt;/p&gt;</comment>
                            <comment id="21588" author="price" created="Mon, 28 Jun 2021 19:58:27 +0000"  >&lt;p&gt;But go ahead and merge the changes to drp_instmodel too: we&apos;re going to need them.&lt;/p&gt;</comment>
                            <comment id="21591" author="hassan" created="Mon, 28 Jun 2021 22:16:12 +0000"  >&lt;p&gt;Yes you are right, the issue with the simulator has nothing to do with the weekly builds. The simulator code has broken following the changes to the datamodel, but this is different to the problem with the weekly.&lt;/p&gt;

&lt;p&gt;I will merge the simulator problem as a separate ticket.&lt;/p&gt;</comment>
                            <comment id="21600" author="hassan" created="Tue, 29 Jun 2021 10:08:13 +0000"  >&lt;p&gt;Changes made by &lt;a href=&quot;https://pfspipe.ipmu.jp/jira/secure/ViewProfile.jspa?name=price&quot; class=&quot;user-hover&quot; rel=&quot;price&quot;&gt;price&lt;/a&gt; in datamodel to fix the failing weekly look fine to me.&lt;/p&gt;</comment>
                            <comment id="21601" author="price" created="Tue, 29 Jun 2021 13:31:06 +0000"  >&lt;p&gt;Merged.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10500" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|02qpt6:508yl0chzzy0000026l</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10100" key="com.atlassian.jira.plugin.system.customfieldtypes:userpicker">
                        <customfieldname>Reviewers</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>hassan</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10005" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="111">2DDRP-2021 A 6</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10002" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Story Points</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                        </customfields>
    </item>
</channel>
</rss>