<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:58:00 UTC 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>Whamcloud Community JIRA</title>
    <link>https://jira.whamcloud.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.4.14</version>
        <build-number>940014</build-number>
        <build-date>05-12-2023</build-date>
    </build-info>


<item>
            <title>[LU-6186] EL7 client sanity-hsm test_70: Failed to start copytool monitor on</title>
                <link>https://jira.whamcloud.com/browse/LU-6186</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;This issue was created by maloo for sarah &amp;lt;sarah@whamcloud.com&amp;gt;&lt;/p&gt;

&lt;p&gt;This issue relates to the following test suite run: &lt;a href=&quot;https://testing.hpdd.intel.com/test_sets/659ff066-a496-11e4-a1ef-5254006e85c2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://testing.hpdd.intel.com/test_sets/659ff066-a496-11e4-a1ef-5254006e85c2&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The sub-test test_70 failed with the following error:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;test failed to respond and timed out
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;test log&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;== sanity-hsm test 70: Copytool logs JSON register/unregister events to FIFO ========================= 00:43:52 (1422089032)
CMD: onyx-43vm5 pkill -INT -x lhsmtool_posix
CMD: onyx-43vm5 mktemp --tmpdir=/tmp -d sanity-hsm.test_70.XXXX
CMD: onyx-43vm5 mkfifo -m 0644 /tmp/sanity-hsm.test_70.74FK/fifo
CMD: onyx-43vm5 cat /tmp/sanity-hsm.test_70.74FK/fifo &amp;gt; /tmp/sanity-hsm.test_70.74FK/events &amp;amp; echo \$! &amp;gt; /tmp/sanity-hsm.test_70.74FK/monitor_pid
ps: write error: Bad file descriptor
 sanity-hsm test_70: @@@@@@ FAIL: Failed to start copytool monitor on onyx-43vm5 
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment>server: lustre-master build # 2830 RHEL6&lt;br/&gt;
client:  EL7</environment>
        <key id="28484">LU-6186</key>
            <summary>EL7 client sanity-hsm test_70: Failed to start copytool monitor on</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="bfaccini">Bruno Faccini</assignee>
                                    <reporter username="maloo">Maloo</reporter>
                        <labels>
                    </labels>
                <created>Fri, 30 Jan 2015 23:05:22 +0000</created>
                <updated>Thu, 4 Feb 2016 02:19:15 +0000</updated>
                            <resolved>Wed, 22 Jul 2015 21:03:59 +0000</resolved>
                                    <version>Lustre 2.7.0</version>
                    <version>Lustre 2.8.0</version>
                                    <fixVersion>Lustre 2.8.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>9</watches>
                                                                            <comments>
                            <comment id="105401" author="adilger" created="Mon, 2 Feb 2015 18:59:18 +0000"  >&lt;p&gt;It looks like this might be a bug in sanity-hsm.sh:&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;copytool_monitor_setup() {
        :
        :
                ps -p $HSMTOOL_MONITOR_PDSH &amp;gt;&amp;amp;- ||
                        error &lt;span class=&quot;code-quote&quot;&gt;&quot;Failed to start copytool monitor on $agent&quot;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;According to bash(1) the use of &lt;tt&gt;&amp;gt;&amp;amp;-&lt;/tt&gt; means:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;       Each redirection that may be preceded by a file descriptor number may
       instead be preceded by a word of the form {varname}.  In this case, for
       each redirection operator except &amp;gt;&amp;amp;- and &amp;lt;&amp;amp;-, the shell will allocate a
       file descriptor greater than or equal to 10 and assign it to varname.
       If  &amp;gt;&amp;amp;- or &amp;lt;&amp;amp;- is preceded by {varname}, the value of varname defines
       the file descriptor to close.
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Since the &lt;tt&gt;ps &lt;del&gt;p&lt;/tt&gt; option is using &lt;tt&gt;$HSMTOOL_MONITOR_PDSH&lt;/tt&gt; there is no {&lt;tt&gt;varname&lt;/tt&gt;} for the &lt;tt&gt;&amp;gt;&amp;amp;&lt;/del&gt;&lt;/tt&gt; option.  I don&apos;t know what this test is doing, but I suspect that the RHEL7 bash is being more strict about handling this error due to recent security bugs in bash.&lt;/p&gt;</comment>
                            <comment id="107787" author="bfaccini" created="Tue, 24 Feb 2015 16:53:20 +0000"  >&lt;p&gt;Seems that RHEL7 bash may require the filedescriptor number/variable to be specified now.&lt;br/&gt;
So &lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;&quot;ps -p $HSMTOOL_MONITOR_PDSH 1&amp;gt;&amp;amp;-&quot;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt; should make it.&lt;/p&gt;
</comment>
                            <comment id="107791" author="gerrit" created="Tue, 24 Feb 2015 17:09:17 +0000"  >&lt;p&gt;Faccini Bruno (bruno.faccini@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/13857&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/13857&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6186&quot; title=&quot;EL7 client sanity-hsm test_70: Failed to start copytool monitor on&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6186&quot;&gt;&lt;del&gt;LU-6186&lt;/del&gt;&lt;/a&gt; tests: specify fd in bash close syntax&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4bec1be8287d5f68b6a85253a29ae66b0e170b90&lt;/p&gt;</comment>
                            <comment id="109725" author="gerrit" created="Sun, 15 Mar 2015 23:49:19 +0000"  >&lt;p&gt;Bob Glossman (bob.glossman@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/14084&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/14084&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6186&quot; title=&quot;EL7 client sanity-hsm test_70: Failed to start copytool monitor on&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6186&quot;&gt;&lt;del&gt;LU-6186&lt;/del&gt;&lt;/a&gt; tests: force test of &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6186&quot; title=&quot;EL7 client sanity-hsm test_70: Failed to start copytool monitor on&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6186&quot;&gt;&lt;del&gt;LU-6186&lt;/del&gt;&lt;/a&gt; on el7&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a083876f739bc20eaafa7960c413cd6ec3cdaace&lt;/p&gt;</comment>
                            <comment id="119879" author="sarah" created="Mon, 29 Jun 2015 21:31:49 +0000"  >&lt;p&gt;another instance: &lt;a href=&quot;https://testing.hpdd.intel.com/test_sets/9dd2d66c-1311-11e5-8d21-5254006e85c2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://testing.hpdd.intel.com/test_sets/9dd2d66c-1311-11e5-8d21-5254006e85c2&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="121952" author="gerrit" created="Wed, 22 Jul 2015 20:28:19 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;http://review.whamcloud.com/13857/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/13857/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6186&quot; title=&quot;EL7 client sanity-hsm test_70: Failed to start copytool monitor on&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6186&quot;&gt;&lt;del&gt;LU-6186&lt;/del&gt;&lt;/a&gt; tests: avoid errors in using &amp;gt;&amp;amp;- bash close syntax&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 68e6eb752f0bbc6e400403a8be4ed671938af075&lt;/p&gt;</comment>
                            <comment id="121954" author="pjones" created="Wed, 22 Jul 2015 21:03:59 +0000"  >&lt;p&gt;Landed for 2.8&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                                        </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzx5cf:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>17307</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10060" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Severity</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10022"><![CDATA[3]]></customfieldvalue>

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