<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 05:06:24 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-44592] Can&apos;t build server with --use-system-mongo-c</title>
                <link>https://jira.mongodb.org/browse/SERVER-44592</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;Hi, on macOS 10.13.6 with Xcode 9.4.1, I tried building mongodb 4.2.1 with &lt;tt&gt;--use-system-mongo-c&lt;/tt&gt;. I have mongo-c-driver 1.15.2 installed with MacPorts. The build failed with:&lt;/p&gt;

&lt;p&gt;&lt;tt&gt;Checking for mongoc_get_major_version() in C library mongoc-1.0... (cached) no&lt;/tt&gt;&lt;br/&gt;
 &lt;tt&gt;Checking for mongoc_get_major_version() in darwin framework mongoc...(cached) no&lt;/tt&gt;&lt;br/&gt;
 &lt;tt&gt;Failed to find the required C driver headers&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;It builds fine using the bundled mongoc if I don&apos;t use&#160;&lt;tt&gt;--use-system-mongo-c&lt;/tt&gt;.&lt;/p&gt;</description>
                <environment></environment>
        <key id="1000203">SERVER-44592</key>
            <summary>Can&apos;t build server with --use-system-mongo-c</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="13202">Works as Designed</resolution>
                                        <assignee username="andrew.morrow@mongodb.com">Andrew Morrow</assignee>
                                    <reporter username="ryandesign">Ryan Schmidt</reporter>
                        <labels>
                    </labels>
                <created>Wed, 13 Nov 2019 04:10:33 +0000</created>
                <updated>Fri, 27 Oct 2023 13:53:00 +0000</updated>
                            <resolved>Tue, 19 Nov 2019 16:29:39 +0000</resolved>
                                    <version>4.2.1</version>
                                                    <component>Build</component>
                                        <votes>0</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="2549311" author="acm" created="Tue, 19 Nov 2019 16:29:28 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=ryandesign&quot; class=&quot;user-hover&quot; rel=&quot;ryandesign&quot;&gt;ryandesign&lt;/a&gt; - I agree, it is a bit of an unusual situation regarding building &lt;tt&gt;mongoc_embedded&lt;/tt&gt;. The reason it is a little unusual is that this &lt;tt&gt;mongoc_embedded&lt;/tt&gt; is specialized code that interoperates with the MongoDB C driver, such that the C driver can be connected to the library version of MongoDB, &lt;tt&gt;mongo_embedded&lt;/tt&gt;. The assumption is that if you don&apos;t have a C driver available, there isn&apos;t any need to have the embedded extension either. Ideally, this code would live in the &lt;tt&gt;mongo-c-driver&lt;/tt&gt; repository, not here. However, the future of &lt;tt&gt;mongo_embedded&lt;/tt&gt; is uncertain, so we don&apos;t want to move it just to kill it off. So for now it is staying put.&lt;/p&gt;

&lt;p&gt;Regarding making better use of &lt;tt&gt;pkgconfig&lt;/tt&gt;, I agree that this would be valuable. Would you mind filing a ticket? There is a &lt;b&gt;lot&lt;/b&gt; of build system work that needs to be done for MongoDB, so I can&apos;t promise we will get to it soon. In the meantime, my recommendation would be that you build with &lt;tt&gt;--use-system-mongo-c=off&lt;/tt&gt; (as you indicated you would do), and that you add any necessary paths explicitly to &lt;tt&gt;CPPPATH&lt;/tt&gt; and &lt;tt&gt;LIBPATH&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;Given that this works by design (for better or worse), I&apos;m going to close this ticket, but do let me know if there is more that I can help with here.&lt;/p&gt;</comment>
                            <comment id="2544592" author="ryandesign" created="Sat, 16 Nov 2019 14:44:29 +0000"  >&lt;p&gt;Thank you for the explanations! There&apos;s a lot of good information there that I didn&apos;t know. There may be an opportunity here to improve the build system.&lt;/p&gt;

&lt;p&gt;I didn&apos;t know that there wasn&apos;t a bundled copy of mongo-c-driver and that&#160;&lt;tt&gt;&amp;#45;&amp;#45;use-system-mongo-c&lt;/tt&gt; controlled whether mongoc_embedded gets built at all. That&apos;s unexpected. I had expected it to be like the other &lt;tt&gt;&amp;#45;&amp;#45;use-system-...&lt;/tt&gt; flags which, as far as I know, merely select between using a bundled library or a system copy of the library. It might be easier to understand if the option were renamed to something like &lt;tt&gt;&amp;#45;&amp;#45;enable-mongoc-embedded&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;I should mention that I&apos;m encountering these issues in the process of updating the MacPorts mongodb port from 4.0.x to 4.2.x. Years ago, around the time of mongodb 3.0.3, I had run into a problem where mongodb would fail to build if the then-current version of libbson and/or mongo-c-driver was installed. I assumed at the time that the libbson/mongo-c-driver and mongodb release schedules were not aligned, and that mongodb included a bundled copy of a different version of libbson/mongo-c-driver with which it was compatible, and I &lt;a href=&quot;https://github.com/macports/macports-ports/commit/b1b7bb0efaedde4ebc949a490f0405c520dbcc2f#diff-2385a5b2ff5e2a90375d6ee0ce040fddR45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;marked this conflict in our mongodb port&lt;/a&gt; with the intention of coming back to it some day, which turned out to be now.&lt;/p&gt;

&lt;p&gt;I don&apos;t specifically want mongoc_embedded, so I will use &lt;tt&gt;&amp;#45;&amp;#45;use-system-mongo-c=off&lt;/tt&gt;. Automatic checks are great for users who build manually, but are not so great for MacPorts because we want to be very specific about what we build. We don&apos;t want some optional feature to become enabled on some user&apos;s system just because they had some library installed. So I will look through the other available options and make sure we&apos;re explicitly enabling or disabling everything the way we want it.&lt;/p&gt;

&lt;p&gt;In MacPorts we do specify &lt;tt&gt;CPPPATH&lt;/tt&gt; and &lt;tt&gt;LIBPATH&lt;/tt&gt;; I forgot to mention that. And if I add &lt;tt&gt;/opt/local/include/libmongoc-1.0 /opt/local/include/libbson-1.0&lt;/tt&gt; to &lt;tt&gt;CPPPATH&lt;/tt&gt; then it does find mongo-c-driver. But it&apos;s unexpected that I should have to specify that manually; mongodb should get whatever flags it needs from its dependencies&apos; pkg-config files.&lt;/p&gt;</comment>
                            <comment id="2538660" author="acm" created="Wed, 13 Nov 2019 13:28:02 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=ryandesign&quot; class=&quot;user-hover&quot; rel=&quot;ryandesign&quot;&gt;ryandesign&lt;/a&gt; - &lt;/p&gt;

&lt;p&gt;You don&apos;t need the C driver to build standard MongoDB, and there isn&apos;t a bundled copy of it in the tree - the only option is to use the system copy. That check is only there in case you want to build the code under &lt;tt&gt;src/mongo/embedded/mongoc_embedded&lt;/tt&gt;, which isn&apos;t part of normal MongoDB and which isn&apos;t built by default. In fact, that part of the tree won&apos;t even be enabled if the check for the C driver doesn&apos;t find a valid driver installation. The flag &lt;tt&gt;--use-system-mongo-c&lt;/tt&gt; is defined as follows:&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: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;add_option(&apos;use-system-mongo-c&apos;,&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: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;    choices=[&apos;on&apos;, &apos;off&apos;, &apos;auto&apos;],&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: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;    const=&apos;on&apos;,&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: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;    default=&quot;auto&quot;,&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: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;    help=&quot;use system version of the mongo-c-driver (auto will use it if it&apos;s found)&quot;,&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: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;    nargs=&apos;?&apos;,&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: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;    type=&apos;choice&apos;,&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;)&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;So it defaults to &lt;tt&gt;auto&lt;/tt&gt; - meaning that if it isn&apos;t found, it won&apos;t be used. It shouldn&apos;t be failing your build, and you can safely ignore that configure check. If you would like to explicitly disable the check for some reason, you can build with &lt;tt&gt;--use-system-mongo-c=off&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;That said, if you really want to be able to make this work, my suspicion is that the MacPorts include and library paths aren&apos;t enabled for your build, so the C driver you have installed there can&apos;t be found. I don&apos;t know exactly what the installation setup for &lt;tt&gt;mongo-c-driver&lt;/tt&gt; looks like in MacPorts, but you probably need something like the following:&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;   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;/opt/local/bin/python3.7 buildscripts/scons.py CC=/opt/local/bin/clang-mp-7.0 CXX=/opt/local/bin/clang++-mp-7.0 --use-system-mongo-c CPPPATH=/opt/local/include/libmongoc-1.0 LIBPATH=/opt/local/lib&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;An improvement on the above would be to get these path arguments for &lt;tt&gt;CPPPATH&lt;/tt&gt; and &lt;tt&gt;LIBPATH&lt;/tt&gt; via &lt;tt&gt;pkgconfig&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;If you are actually interested in building the embedded code, I suggest reaching out on mongodb-dev first &lt;a href=&quot;https://groups.google.com/forum/#!forum/mongodb-dev&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://groups.google.com/forum/#!forum/mongodb-dev&lt;/a&gt; so we can discuss.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 13 Nov 2019 13:28:02 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        4 years, 12 weeks, 1 day 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>luke.bonanomi@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            4 years, 12 weeks, 1 day ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_10032" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Operating System</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10026"><![CDATA[ALL]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>andrew.morrow@mongodb.com</customfieldvalue>
            <customfieldvalue>ryandesign</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hw2bmv:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hvslmn:</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_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="3442">Dev Platform 2019-12-02</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10750" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
                        <customfieldname>Steps To Reproduce</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>&lt;p&gt;&lt;tt&gt;/opt/local/bin/python3.7 buildscripts/scons.py CC=/opt/local/bin/clang-mp-7.0 CXX=/opt/local/bin/clang++-mp-7.0 --use-system-mongo-c&lt;/tt&gt;&lt;/p&gt;</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|hw1xw7:</customfieldvalue>

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