<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:19:49 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>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[SERVER-9248] MongoDB crash on startup on linux system when unable to check readahead due to limited permissions</title>
                <link>https://jira.mongodb.org/browse/SERVER-9248</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;div class=&quot;panel&quot; style=&quot;background-color: #EEEEEE;border-color: #ccc;border-width: 1px;&quot;&gt;&lt;div class=&quot;panelHeader&quot; style=&quot;border-bottom-width: 1px;border-bottom-color: #ccc;background-color: #6CB33F;&quot;&gt;&lt;b&gt;Issue Status as of March 31, 2014&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;panelContent&quot; style=&quot;background-color: #EEEEEE;&quot;&gt;
&lt;p&gt;&lt;b&gt;ISSUE SUMMARY&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;MongoDB checks the readahead settings on startup from the &lt;tt&gt;/sys/dev/block&lt;/tt&gt; directory. If the permissions to these files are restricted so that MongoDB cannot open them, it terminates with an exception. &lt;/p&gt;

&lt;p&gt;&lt;b&gt;USER IMPACT&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Some systems with heightened security settings (for example hardened Gentoo with grSecurity extension) restrict access to the required file by default.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;SOLUTION&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;The solution is to ignore any error due to restricted file permissions and skip the readahead check in such a case.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;WORKAROUNDS&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Ensure that the user running the mongod process has read access access to the files under &lt;tt&gt;/sys/dev/block&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;AFFECTED VERSIONS&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;All release versions from 2.4.0 to 2.4.9 are affected.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;PATCHES&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;The fix is included in the 2.4.10 production release and the 2.5.3 development version, which will evolve into the 2.6.0 production release.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;h6&gt;&lt;a name=&quot;OriginalDescription&quot;&gt;&lt;/a&gt;Original Description&lt;/h6&gt;

&lt;p&gt;MongoDB try to check if the file &apos;/sys/dev/block/x:x/queue/read_ahead_kb&apos; exists on startup.&lt;/p&gt;

&lt;p&gt;When the MongoDB&apos;s user have not the permission access to a parent directory, it throw an exception and stop the server:&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; exception in initAndListen std::exception: boost::filesystem::status: Permission denied: &quot;/sys/dev/block/253:1/queue/read_ahead_kb&quot;, terminating&lt;/p&gt;

&lt;p&gt;Code:&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/blob/master/src/mongo/db/db.cpp#L538&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/blob/master/src/mongo/db/db.cpp#L538&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GRSEC sysfs restrict results:&lt;br/&gt;
bdd ~ # ls -al /sys/                               &lt;br/&gt;
total 4                                            &lt;br/&gt;
dr-xr-xr-x  11 root root    0 Mar 27 20:39 .       &lt;br/&gt;
drwxr-xr-x  21 root root 4096 Nov 16 00:02 ..      &lt;br/&gt;
drwx------   2 root root    0 Apr  4 19:34 block   &lt;br/&gt;
drwx------  19 root root    0 Apr  4 19:34 bus     &lt;br/&gt;
drwx------  59 root root    0 Apr  4 19:22 class   &lt;br/&gt;
drwx------   4 root root    0 Apr  4 19:20 dev     &lt;br/&gt;
drwxr-xr-x  10 root root    0 Mar 31 09:12 devices &lt;br/&gt;
drwx------   4 root root    0 Apr  4 19:34 firmware&lt;br/&gt;
drwxr-xr-x   5 root root    0 Mar 27 20:39 fs      &lt;br/&gt;
drwx------   8 root root    0 Mar 27 20:39 kernel  &lt;br/&gt;
drwx------ 144 root root    0 Apr  4 19:34 module  &lt;/p&gt;

&lt;p&gt;MongoDB log file:&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; MongoDB starting : pid=19263 port=27017 dbpath=/var/lib/mongodb 64-bit host=bdd&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; db version v2.4.1&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; git version: nogitversion&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; build info: Linux bdd 3.7.5-hardened-r1-xxxx-grs-ipv6-64 #1 SMP Sun Mar 10 16:55:21 CET 2013 x86_64 BOOST_LIB_VERSION=1_52                    &lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; allocator: tcmalloc&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; options: &lt;/p&gt;
{ bind_ip: &quot;127.0.0.1&quot;, dbpath: &quot;/var/lib/mongodb&quot;, journal: true, logappend: true, logpath: &quot;/var/log/mongodb/mongodb.log&quot;, port: 27017, unixSocketPrefix: &quot;/var/run/mongodb&quot; }
&lt;p&gt;Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; exception in initAndListen std::exception: boost::filesystem::status: Permission denied: &quot;/sys/dev/block/253:1/queue/read_ahead_kb&quot;, terminating&lt;br/&gt;
Thu Apr  4 22:09:42.701 dbexit:                                                               &lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; shutdown: going to close listening sockets...&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; shutdown: going to flush diaglog...&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; shutdown: going to close sockets...&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; shutdown: waiting for fs preallocator...&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; shutdown: lock for final commit...&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; shutdown: final commit...&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; shutdown: closing all files...&lt;br/&gt;
Thu Apr  4 22:09:42.701 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; closeAllFiles() finished&lt;br/&gt;
Thu Apr  4 22:09:42.701 dbexit: really exiting now&lt;/p&gt;

&lt;p&gt;Kernel configuration:&lt;br/&gt;
Symbol: GRKERNSEC_SYSFS_RESTRICT &lt;span class=&quot;error&quot;&gt;&amp;#91;=y&amp;#93;&lt;/span&gt;     &lt;br/&gt;
Type  : boolean                           &lt;br/&gt;
Prompt: Sysfs/debugfs restriction         &lt;br/&gt;
  Defined at grsecurity/Kconfig:354       &lt;br/&gt;
  Depends on: GRKERNSEC &lt;span class=&quot;error&quot;&gt;&amp;#91;=y&amp;#93;&lt;/span&gt; &amp;amp;&amp;amp; SYSFS &lt;span class=&quot;error&quot;&gt;&amp;#91;=y&amp;#93;&lt;/span&gt;&lt;br/&gt;
  Location:                               &lt;br/&gt;
    -&amp;gt; Security options                   &lt;br/&gt;
      -&amp;gt; Grsecurity                       &lt;br/&gt;
        -&amp;gt; Grsecurity (GRKERNSEC &lt;span class=&quot;error&quot;&gt;&amp;#91;=y&amp;#93;&lt;/span&gt;)    &lt;br/&gt;
          -&amp;gt; Customize Configuration      &lt;br/&gt;
            -&amp;gt; Filesystem Protections&lt;/p&gt;</description>
                <environment>Gentoo Linux + kernel 3.7.5 + grsec with GRKERNSEC_SYSFS_RESTRICT</environment>
        <key id="70795">SERVER-9248</key>
            <summary>MongoDB crash on startup on linux system when unable to check readahead due to limited permissions</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.mongodb.org/images/icons/priorities/minor.svg">Minor - P4</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="mathias@mongodb.com">Mathias Stearn</assignee>
                                    <reporter username="fquillien">Florent Quillien</reporter>
                        <labels>
                    </labels>
                <created>Thu, 4 Apr 2013 20:36:36 +0000</created>
                <updated>Mon, 11 Jul 2016 17:56:32 +0000</updated>
                            <resolved>Mon, 7 Oct 2013 21:25:55 +0000</resolved>
                                    <version>2.4.1</version>
                                    <fixVersion>2.4.10</fixVersion>
                    <fixVersion>2.5.3</fixVersion>
                                    <component>Usability</component>
                                        <votes>4</votes>
                                    <watches>13</watches>
                                                                                                                <comments>
                            <comment id="512188" author="xgen-internal-githook" created="Sun, 9 Mar 2014 23:27:55 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;name&apos;: u&apos;Dan Pasette&apos;, u&apos;email&apos;: u&apos;dan@10mongodb.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-9248&quot; title=&quot;MongoDB crash on startup on linux system when unable to check readahead due to limited permissions&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-9248&quot;&gt;&lt;del&gt;SERVER-9248&lt;/del&gt;&lt;/a&gt; Fix up try/catch block&lt;br/&gt;
Branch: v2.4&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/67c47db36f9195679382062d52db0151251c6074&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/67c47db36f9195679382062d52db0151251c6074&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="512121" author="xgen-internal-githook" created="Sun, 9 Mar 2014 15:28:01 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;name&apos;: u&apos;Dan Pasette&apos;, u&apos;email&apos;: u&apos;dan@10mongodb.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-9248&quot; title=&quot;MongoDB crash on startup on linux system when unable to check readahead due to limited permissions&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-9248&quot;&gt;&lt;del&gt;SERVER-9248&lt;/del&gt;&lt;/a&gt; Ignore errors when checking readahead&lt;/p&gt;

&lt;p&gt;To test, run sudo chmod o-x /sys/dev/block&lt;br/&gt;
Manual backport of commit 9501c1bfce47079de54e0aba7b78bae341e3e916&lt;br/&gt;
Branch: v2.4&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/989ed9711ec10194476e65813183d9fae290af88&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/989ed9711ec10194476e65813183d9fae290af88&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="436857" author="auto" created="Mon, 7 Oct 2013 21:19:24 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-9248&quot; title=&quot;MongoDB crash on startup on linux system when unable to check readahead due to limited permissions&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-9248&quot;&gt;&lt;del&gt;SERVER-9248&lt;/del&gt;&lt;/a&gt; Ignore errors when checking readahead&lt;/p&gt;

&lt;p&gt;To test, run sudo chmod o-x /sys/dev/block&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/9501c1bfce47079de54e0aba7b78bae341e3e916&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/9501c1bfce47079de54e0aba7b78bae341e3e916&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="435681" author="eliot" created="Fri, 4 Oct 2013 11:14:40 +0000"  >&lt;p&gt;If we do not have access to the file, we should just ignore.&lt;/p&gt;</comment>
                            <comment id="435678" author="jirutka" created="Fri, 4 Oct 2013 11:10:11 +0000"  >&lt;p&gt;I&#8217;m forced to stay on &amp;lt;2.4 due this issue. Please make this check optional!&lt;/p&gt;</comment>
                            <comment id="376930" author="maverick" created="Tue, 9 Jul 2013 08:42:21 +0000"  >&lt;p&gt;confirm on 3.2.11-hardened gentoo &lt;/p&gt;</comment>
                            <comment id="328336" author="kirelagin" created="Sat, 4 May 2013 13:59:17 +0000"  >&lt;p&gt;This check should be optional definitely.&lt;/p&gt;</comment>
                            <comment id="327852" author="iamfake" created="Fri, 3 May 2013 19:45:08 +0000"  >&lt;p&gt;I confirm this bug. 3.8.3-hardened Gentoo and recommended grsecurity settings. Seems there is another way. through RBAC i think. i&apos;ll try to figure out this.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="125157" name="logs.zip" size="98998" author="ralf.kistner@gmail.com" created="Tue, 7 Jun 2016 15:47:16 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>8.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10038"><![CDATA[Fully Compatible]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 3 May 2013 19:45:08 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        9 years, 49 weeks, 3 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>ramon.fernandez@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            9 years, 49 weeks, 3 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_10032" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Operating System</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10020"><![CDATA[Linux]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>auto</customfieldvalue>
            <customfieldvalue>eliot</customfieldvalue>
            <customfieldvalue>fquillien</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>jirutka</customfieldvalue>
            <customfieldvalue>kirelagin</customfieldvalue>
            <customfieldvalue>mathias@mongodb.com</customfieldvalue>
            <customfieldvalue>iamfake</customfieldvalue>
            <customfieldvalue>maverick</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrmycf:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hrn3qf:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>48540</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10750" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
                        <customfieldname>Steps To Reproduce</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;A kernel with grsec patch and sysfs restrict activated&lt;/li&gt;
	&lt;li&gt;Start mongodb&lt;/li&gt;
&lt;/ul&gt;
</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10166" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Tests Written</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10340"><![CDATA[Pending Test Framework Changes]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_22870" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Triagers</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrirdj:</customfieldvalue>

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