<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Wed Feb 07 21:13:51 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>[CDRIVER-2003] readConcern option should not be included in getMore commands</title>
                <link>https://jira.mongodb.org/browse/CDRIVER-2003</link>
                <project id="10030" key="CDRIVER">C Driver</project>
                    <description>&lt;p&gt;In &lt;a href=&quot;https://github.com/mongodb/mongo-php-driver/issues/516&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;mongodb/mongo-php-driver#516&lt;/a&gt;, a user encountered the following error when iterating on a large result set on a &lt;tt&gt;find&lt;/tt&gt; operation that included a &quot;local&quot; read concern level:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Failed to parse: { getMore: 44504619209605, collection: &quot;customers&quot;, readConcern: { level: &quot;local&quot; } }. Unrecognized field &apos;readConcern&apos;.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;If we look at &lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/blob/1.5.3/src/mongoc/mongoc-cursor-cursorid.c#L224&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;&lt;tt&gt;_mongoc_cursor_cursorid_get_more()&lt;/tt&gt;&lt;/a&gt;, it calls &lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/blob/1.5.3/src/mongoc/mongoc-cursor-cursorid.c#L175&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;&lt;tt&gt;_mongoc_cursor_prepare_getmore_command()&lt;/tt&gt;&lt;/a&gt; to create the &lt;tt&gt;getMore&lt;/tt&gt; command document. That document is then passed along to &lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/blob/1.5.3/src/mongoc/mongoc-cursor-cursorid.c#L108&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;&lt;tt&gt;_mongoc_cursor_cursorid_refresh_from_command()&lt;/tt&gt;&lt;/a&gt; and executed with &lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/blob/1.5.3/src/mongoc/mongoc-cursor.c#L108&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;&lt;tt&gt;_mongoc_cursor_run_command()&lt;/tt&gt;&lt;/a&gt;, wherein a &lt;tt&gt;readConcern&lt;/tt&gt; field &lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/blob/1.5.3/src/mongoc/mongoc-cursor.c#L1248&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;may be appended&lt;/a&gt;. The logic for appending the &lt;tt&gt;readConcern&lt;/tt&gt; needs to be a bit more restrictive so that it only triggers for supported commands.&lt;/p&gt;</description>
                <environment></environment>
        <key id="349143">CDRIVER-2003</key>
            <summary>readConcern option should not be included in getMore commands</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</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="9">Done</resolution>
                                        <assignee username="bjori">Hannes Magnusson</assignee>
                                    <reporter username="jmikola@mongodb.com">Jeremy Mikola</reporter>
                        <labels>
                    </labels>
                <created>Wed, 25 Jan 2017 19:35:22 +0000</created>
                <updated>Tue, 31 Jan 2017 13:27:55 +0000</updated>
                            <resolved>Fri, 27 Jan 2017 04:22:13 +0000</resolved>
                                    <version>1.5.3</version>
                                    <fixVersion>1.5.4</fixVersion>
                                    <component>libmongoc</component>
                                        <votes>0</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="1488566" author="xgen-internal-githook" created="Mon, 30 Jan 2017 22:22:30 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jmikola&apos;, u&apos;name&apos;: u&apos;Jeremy Mikola&apos;, u&apos;email&apos;: u&apos;jmikola@gmail.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/PHPC-898&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;PHPC-898&quot;&gt;&lt;del&gt;PHPC-898&lt;/del&gt;&lt;/a&gt;: Bump libmongoc and libbson to 1.5.4&lt;/p&gt;

&lt;p&gt;Includes &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt;, which fixes an issue with queries using a read concern.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-php-driver/commit/faae013abeb38aa7d3e0407cbe9fab9e51d003e6&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-php-driver/commit/faae013abeb38aa7d3e0407cbe9fab9e51d003e6&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1488553" author="xgen-internal-githook" created="Mon, 30 Jan 2017 22:14:49 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jmikola&apos;, u&apos;name&apos;: u&apos;Jeremy Mikola&apos;, u&apos;email&apos;: u&apos;jmikola@gmail.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/PHPC-898&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;PHPC-898&quot;&gt;&lt;del&gt;PHPC-898&lt;/del&gt;&lt;/a&gt;: Bump libmongoc and libbson to 1.5.4&lt;/p&gt;

&lt;p&gt;Includes &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt;, which fixes an issue with queries using a read concern.&lt;br/&gt;
Branch: v1.2&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-php-driver/commit/faae013abeb38aa7d3e0407cbe9fab9e51d003e6&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-php-driver/commit/faae013abeb38aa7d3e0407cbe9fab9e51d003e6&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1487489" author="xgen-internal-githook" created="Sat, 28 Jan 2017 13:05:52 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;ajdavis&apos;, u&apos;name&apos;: u&apos;A. Jesse Jiryu Davis&apos;, u&apos;email&apos;: u&apos;jesse@mongodb.com&apos;}
&lt;p&gt;Message: Merge branch &apos;master&apos; of github.com:mongodb/mongo-c-driver&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&apos;master&apos; of github.com:mongodb/mongo-c-driver:&lt;br/&gt;
  &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-1985&quot; title=&quot;Deprecate mongoc_collection_save&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-1985&quot;&gt;&lt;del&gt;CDRIVER-1985&lt;/del&gt;&lt;/a&gt; Deprecate mongoc_collection_save&lt;br/&gt;
  &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt; readConcern option should not be included in getMore commands&lt;br/&gt;
  &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-1998&quot; title=&quot;Bump the handshake configure flags&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-1998&quot;&gt;&lt;del&gt;CDRIVER-1998&lt;/del&gt;&lt;/a&gt;: Bump the handshake configure flags&lt;br/&gt;
  &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2000&quot; title=&quot;GSSAPI Authentication failure on RHEL7.1 (ppc64le)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2000&quot;&gt;&lt;del&gt;CDRIVER-2000&lt;/del&gt;&lt;/a&gt; Implement sasl logger and fail early on unsupported mechanism&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/e93dc32c7aca7a8c22074dd0fc7d0fa948cffee9&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/e93dc32c7aca7a8c22074dd0fc7d0fa948cffee9&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="1486526" author="xgen-internal-githook" created="Fri, 27 Jan 2017 04:18:54 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;bjori&apos;, u&apos;name&apos;: u&apos;Hannes Magnusson&apos;, u&apos;email&apos;: u&apos;bjori@php.net&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt; readConcern option should not be included in getMore commands&lt;br/&gt;
Branch: r1.5&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/5e9fb16fe1fbde011ec7deda0df23c41c7dba172&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/5e9fb16fe1fbde011ec7deda0df23c41c7dba172&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1486522" author="xgen-internal-githook" created="Fri, 27 Jan 2017 04:12:46 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;bjori&apos;, u&apos;name&apos;: u&apos;Hannes Magnusson&apos;, u&apos;email&apos;: u&apos;bjori@php.net&apos;}
&lt;p&gt;Message: Merge branch &apos;&lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt;-getmore-read-concern&apos;&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt;-getmore-read-concern:&lt;br/&gt;
  &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt; readConcern option should not be included in getMore commands&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/0a9cd935c79021cb8efc2f33f73f725e17501243&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/0a9cd935c79021cb8efc2f33f73f725e17501243&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="1486521" author="xgen-internal-githook" created="Fri, 27 Jan 2017 04:12:45 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;bjori&apos;, u&apos;name&apos;: u&apos;Hannes Magnusson&apos;, u&apos;email&apos;: u&apos;bjori@php.net&apos;}
&lt;p&gt;Message: Merge branch &apos;&lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt;-getmore-read-concern&apos;&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt;-getmore-read-concern:&lt;br/&gt;
  &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt; readConcern option should not be included in getMore commands&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/0a9cd935c79021cb8efc2f33f73f725e17501243&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/0a9cd935c79021cb8efc2f33f73f725e17501243&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="1486520" author="xgen-internal-githook" created="Fri, 27 Jan 2017 04:12:44 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;bjori&apos;, u&apos;name&apos;: u&apos;Hannes Magnusson&apos;, u&apos;email&apos;: u&apos;bjori@php.net&apos;}
&lt;p&gt;Message: Merge branch &apos;&lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt;-getmore-read-concern&apos;&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt;-getmore-read-concern:&lt;br/&gt;
  &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt; readConcern option should not be included in getMore commands&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/0a9cd935c79021cb8efc2f33f73f725e17501243&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/0a9cd935c79021cb8efc2f33f73f725e17501243&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="1486519" author="xgen-internal-githook" created="Fri, 27 Jan 2017 04:12:43 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;bjori&apos;, u&apos;name&apos;: u&apos;Hannes Magnusson&apos;, u&apos;email&apos;: u&apos;bjori@php.net&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-2003&quot; title=&quot;readConcern option should not be included in getMore commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-2003&quot;&gt;&lt;del&gt;CDRIVER-2003&lt;/del&gt;&lt;/a&gt; readConcern option should not be included in getMore commands&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/1a1a065d054959b63b4d406d83978c701bf94207&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/1a1a065d054959b63b4d406d83978c701bf94207&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                                                <inwardlinks description="is depended on by">
                                        <issuelink>
            <issuekey id="349144">PHPC-898</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hsu8wn:</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>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </customfields>
    </item>
</channel>
</rss>