<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 15:31:46 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>[REDMINE1D-344] [RM-8433] [parameters] wrong enableIGM in load_linecatalog</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/REDMINE1D-344</link>
                <project id="11002" key="REDMINE1D">1D Redmine </project>
                    <description>&lt;p&gt;&lt;em&gt;&lt;font color=&quot;#505f79&quot;&gt; Created on 2023-10-23 13:36:20 by Didier Vibert. % Done: 100&lt;/font&gt;&lt;/em&gt;&lt;/p&gt;


&lt;p&gt;since #8048, inside load_linecatalog, the enableIGM boolean is wrongly computed&lt;/p&gt;

&lt;p&gt;before #8048 the value was &lt;br/&gt;
&amp;lt;pre&amp;gt;&amp;lt;code class=&quot;python&quot;&amp;gt;&lt;br/&gt;
        enableIGM = self.parameters&lt;span class=&quot;error&quot;&gt;&amp;#91;object_type&amp;#93;&lt;/span&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;method&amp;#93;&lt;/span&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;quot;linemodel&amp;quot;&amp;#93;&lt;/span&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;quot;igmfit&amp;quot;&amp;#93;&lt;/span&gt;&lt;br/&gt;
&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;/p&gt;

&lt;p&gt;whereas, now it is &lt;br/&gt;
&amp;lt;pre&amp;gt;&amp;lt;code class=&quot;python&quot;&amp;gt;&lt;br/&gt;
        enableIGM = self.parameters.get_solve_method_igm_fit(object_type, solve_method)&lt;br/&gt;
&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;/p&gt;

&lt;p&gt;and the code of @get_solve_method_igm_fit@ is&lt;br/&gt;
&amp;lt;pre&amp;gt;&amp;lt;code class=&quot;python&quot;&amp;gt;&lt;br/&gt;
    def get_solve_method_igm_fit(self, object_type: str, solve_method: str) -&amp;gt; bool:&lt;br/&gt;
        igmfit = None&lt;br/&gt;
        if solve_method == &quot;LineModelSolve&quot;:&lt;br/&gt;
            igmfit = self.get_lineModelSolve_igmfit(object_type)&lt;br/&gt;
        elif solve_method == &quot;TemplateFittingSolve&quot;:&lt;br/&gt;
            igmfit = self.get_templateFittingSolve_igmfit(object_type)&lt;br/&gt;
        elif solve_method == &quot;TplcombinationSolve&quot;:&lt;br/&gt;
            igmfit = self.get_templateCombinationSolve_igmfit(object_type)&lt;br/&gt;
        return igmfit&lt;/p&gt;

&lt;p&gt;&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;/p&gt;


&lt;p&gt;inside load_linecatalog, the @get_solve_method_igm_fit@ can be @&quot;LineModelSolve&quot;@ or @&quot;LineMeasSolve&quot;@&lt;/p&gt;

&lt;p&gt;thus  @&quot;LineMeasSolve&quot;@ is missing&lt;/p&gt;</description>
                <environment></environment>
        <key id="24084">REDMINE1D-344</key>
            <summary>[RM-8433] [parameters] wrong enableIGM in load_linecatalog</summary>
                <type id="3" iconUrl="https://pfspipe.ipmu.jp/jira/secure/viewavatar?size=xsmall&amp;avatarId=10518&amp;avatarType=issuetype">Task</type>
                                            <priority id="10000" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/priorities/medium.svg">Normal</priority>
                        <status id="10000" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/statuses/generic.png" description="Issue is reviewed and ready to be merged and closed">Review Complete</status>
                    <statusCategory id="4" key="indeterminate" colorName="yellow"/>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="r2j.migrate">Redmine-Jira Migtation</assignee>
                                    <reporter username="r2j.migrate">Redmine-Jira Migtation</reporter>
                        <labels>
                    </labels>
                <created>Mon, 23 Oct 2023 18:16:18 +0000</created>
                <updated>Fri, 9 Feb 2024 18:20:14 +0000</updated>
                                                                                <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                <comments>
                            <comment id="37137" author="r2j.migrate" created="Fri, 9 Feb 2024 18:19:35 +0000"  >&lt;p&gt;Comment by Gaelle Daste on 2024-02-05 10:28:32:&lt;br/&gt;
MR : &lt;a href=&quot;https://gitlab.lam.fr/CPF/cpf-redshift/-/merge_requests/583&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;https://gitlab.lam.fr/CPF/cpf-redshift/-/merge_requests/583&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="37138" author="r2j.migrate" created="Fri, 9 Feb 2024 18:19:44 +0000"  >&lt;p&gt;Comment by Gaelle Daste on 2024-02-05 14:02:30:&lt;br/&gt;
IT main OK&lt;/p&gt;</comment>
                            <comment id="37139" author="r2j.migrate" created="Fri, 9 Feb 2024 18:19:52 +0000"  >&lt;p&gt;Comment by Didier Vibert on 2024-02-05 15:29:38:&lt;br/&gt;
pour moi c&apos;est bon. @fdufresne tu valides et met en feedback si c&apos;est ok pour toi  ?&lt;/p&gt;</comment>
                            <comment id="37140" author="r2j.migrate" created="Fri, 9 Feb 2024 18:20:00 +0000"  >&lt;p&gt;Comment by Fanny Dufresne on 2024-02-06 15:46:25:&lt;br/&gt;
OK pour moi, il faudra que je me rebase dessus, avec le refacto lya, le igmFit dispara&#238;t&lt;/p&gt;</comment>
                            <comment id="37141" author="r2j.migrate" created="Fri, 9 Feb 2024 18:20:05 +0000"  >&lt;p&gt;Comment by Pierre-yves Chabaud on 2024-02-09 17:46:46:&lt;br/&gt;
Merged into @develop@ (@d1a98494@)&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|zzt02v:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    </customfields>
    </item>
</channel>
</rss>