<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 06:12:57 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-69237] Make the preImage document always available to CollectionUpdateArgs from UpdateStage</title>
                <link>https://jira.mongodb.org/browse/SERVER-69237</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;&lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/catalog/collection.h#L70-L71&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;CollectionUpdateArgs currently has a &lt;tt&gt;boost::optional&amp;lt;BSONObj&amp;gt; preImageDoc&lt;/tt&gt; member&lt;/a&gt; representing the state of the document before the update occurred. For storage engines supporting document&amp;#45;level concurrency, &lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/exec/update_stage.cpp#L516-L518&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;the preImage document is &lt;em&gt;always&lt;/em&gt; copied out of the storage engine before applying the update&lt;/a&gt;. This means that, since the removal of the MMAPv1 storage engine in MongoDB 4.2, CollectionUpdateArgs::preImageDoc can be non-optional.&lt;/p&gt;

&lt;p/&gt;
&lt;div id=&quot;syntaxplugin&quot; class=&quot;syntaxplugin&quot; style=&quot;border: 1px dashed #bbb; border-radius: 5px !important; overflow: auto; max-height: 30em;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot; style=&quot;font-size: 1em; line-height: 1.4em !important; font-weight: normal; font-style: normal; color: black;&quot;&gt;
		&lt;tbody &gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;  margin-top: 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: #008200; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;// Ensure that the BSONObj underlying the WorkingSetMember is owned because saveState()&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: #008200; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;// is allowed to free the memory.&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   margin-bottom: 10px;  width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;member-&amp;gt;makeObjOwnedIfNeeded();&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;

&lt;p&gt;As part of these changes we should consider simplifying the places which attempted to carefully get an owned copy of the &lt;tt&gt;oldObj&lt;/tt&gt; and &lt;tt&gt;newObj&lt;/tt&gt; and instead make owned BSONObjs for them available inside and outside UpdateStage in an obvious way. Some areas which are ripe for refactoring include:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Callers of BSONObj::getOwned() inside of UpdateStage (&lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/exec/update_stage.cpp#L276-L278&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1&lt;/a&gt; &lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/exec/update_stage.cpp#L291-L294&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;2&lt;/a&gt; &lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/exec/update_stage.cpp#L318-L321&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3&lt;/a&gt; &lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/exec/update_stage.cpp#L533-L538&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4&lt;/a&gt; &lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/exec/update_stage.cpp#L577-L580&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;5&lt;/a&gt;)&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/exec/update_stage.cpp#L779-L784&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;UpdateStage::checkUpdateChangesShardKeyFields()&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/catalog/collection_impl.cpp#L856-L861&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;CollectionImpl::updateDocument()&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/catalog/collection_impl.cpp#L945-L950&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;CollectionImpl::updateDocumentWithDamages()&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Note that &lt;a href=&quot;https://github.com/mongodb/mongo/blob/be2effed55930ecd2b9efc06057ab45dbb4163d0/src/mongo/db/catalog/collection.h#L85&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;CollectionUpdateArgs::storeDocOption&lt;/a&gt; should continue to be StoreDocOption::kNone when the preImage document doesn&apos;t need to be stored in config.image&amp;#95;collection, etc.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;Side note: In the MMAPv1 storage engine, in&amp;#45;place updates were truly applied in-place meaning that the address of &lt;tt&gt;oldObj&lt;/tt&gt; and the address of &lt;tt&gt;newObj&lt;/tt&gt; were the same address.&lt;/p&gt;</description>
                <environment></environment>
        <key id="2124760">SERVER-69237</key>
            <summary>Make the preImage document always available to CollectionUpdateArgs from UpdateStage</summary>
                <type id="4" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14710&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</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="13201">Fixed</resolution>
                                        <assignee username="israel.hsu@mongodb.com">Israel Hsu</assignee>
                                    <reporter username="max.hirschhorn@mongodb.com">Max Hirschhorn</reporter>
                        <labels>
                    </labels>
                <created>Mon, 29 Aug 2022 23:59:57 +0000</created>
                <updated>Sun, 29 Oct 2023 21:33:51 +0000</updated>
                            <resolved>Fri, 18 Nov 2022 12:53:41 +0000</resolved>
                                                    <fixVersion>6.3.0-rc0</fixVersion>
                                    <component>Write Ops</component>
                                        <votes>1</votes>
                                    <watches>8</watches>
                                                                                                                <comments>
                            <comment id="4992680" author="JIRAUSER1262333" created="Fri, 18 Nov 2022 12:49:53 +0000"  >&lt;p&gt;Code reviews:&lt;br/&gt;
mongo: &lt;a href=&quot;https://github.com/10gen/mongo/pull/8366&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/mongo/pull/8366&lt;/a&gt;&lt;br/&gt;
enterprise: &lt;a href=&quot;https://github.com/10gen/mongo-enterprise-modules/pull/742&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/mongo-enterprise-modules/pull/742&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Merged PRs:&lt;br/&gt;
mongo: &lt;a href=&quot;https://github.com/10gen/mongo/pull/8793&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/mongo/pull/8793&lt;/a&gt;&lt;br/&gt;
enterprise: &lt;a href=&quot;https://github.com/10gen/mongo-enterprise-modules/pull/763&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/mongo-enterprise-modules/pull/763&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4992634" author="xgen-internal-githook" created="Fri, 18 Nov 2022 12:13:34 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Israel Hsu&apos;, &apos;email&apos;: &apos;israel.hsu@mongodb.com&apos;, &apos;username&apos;: &apos;israelhsu&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-69237&quot; title=&quot;Make the preImage document always available to CollectionUpdateArgs from UpdateStage&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-69237&quot;&gt;&lt;del&gt;SERVER-69237&lt;/del&gt;&lt;/a&gt; Make preImage doc available to CollectionUpdateArgs&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/9ce81dcabd0fd0930c8a44df47551285124ba4eb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/9ce81dcabd0fd0930c8a44df47551285124ba4eb&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4992633" author="xgen-internal-githook" created="Fri, 18 Nov 2022 12:13:23 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Israel Hsu&apos;, &apos;email&apos;: &apos;israel.hsu@mongodb.com&apos;, &apos;username&apos;: &apos;israelhsu&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-69237&quot; title=&quot;Make the preImage document always available to CollectionUpdateArgs from UpdateStage&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-69237&quot;&gt;&lt;del&gt;SERVER-69237&lt;/del&gt;&lt;/a&gt; Make preImage doc available to CollectionUpdateArgs&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/mongo-enterprise-modules/commit/1c2f9bb700d056e3966f659489881429bb9d98ee&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/mongo-enterprise-modules/commit/1c2f9bb700d056e3966f659489881429bb9d98ee&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4914193" author="JIRAUSER1262333" created="Wed, 19 Oct 2022 22:20:32 +0000"  >&lt;p&gt;I chatted with &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=mihai.andrei%40mongodb.com&quot; class=&quot;user-hover&quot; rel=&quot;mihai.andrei@mongodb.com&quot;&gt;mihai.andrei@mongodb.com&lt;/a&gt;. The plan is to remove the conditions that prevent preImageDoc from being assigned to CollectionUpdateArgs (but still leave that member as boost::optional, at least temporarily.) Testing will be changed to ensure that preImageDoc is initialized (not boost::none), so failing tests should be able to point to any code paths that leave it uninitialized.&lt;/p&gt;</comment>
                            <comment id="4908313" author="JIRAUSER1262333" created="Mon, 17 Oct 2022 20:53:17 +0000"  >&lt;p&gt;Status: Examined all the cases where the assignment of preImageDoc is dependent on some condition.&lt;/p&gt;

&lt;p&gt;Question 1: Is it sufficient to replace the conditional assignment with just an assignment?&lt;/p&gt;

&lt;p&gt;Question 2: Are there any code paths through Update where the preImageDoc is never set?&lt;/p&gt;

&lt;p&gt;Testing: Identify the code paths that originally left the preImageDoc unset, and make sure that tests exercise those paths and confirm that preImageDoc is set.&lt;/p&gt;</comment>
                            <comment id="4842898" author="JIRAUSER1269325" created="Tue, 20 Sep 2022 18:46:28 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=max.hirschhorn%40mongodb.com&quot; class=&quot;user-hover&quot; rel=&quot;max.hirschhorn@mongodb.com&quot;&gt;max.hirschhorn@mongodb.com&lt;/a&gt; we are adding this to the QE Backlog, but if you have an engineer who can take it, we can review it. &lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="2130035">SERVER-69474</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="2426697">SERVER-80423</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>6.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3.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>Tue, 20 Sep 2022 18:46:28 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        1 year, 11 weeks, 5 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_17050" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Downstream Team Attention</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="16941"><![CDATA[Not Needed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10857" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>PM-1858</customfieldvalue>
                        </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>luke.bonanomi@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            1 year, 11 weeks, 5 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>brenda.rodriguez@mongodb.com</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>israel.hsu@mongodb.com</customfieldvalue>
            <customfieldvalue>max.hirschhorn@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i186zr:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</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_22250" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Special Downgrade Instructions Required</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="23343"><![CDATA[Not Needed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="6351">Sharding NYC 2022-10-31</customfieldvalue>
    <customfieldvalue id="6352">Sharding NYC 2022-11-14</customfieldvalue>
    <customfieldvalue id="6353">Sharding NYC 2022-11-28</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|i17t53:</customfieldvalue>

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