Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 40fb2f4

Browse files
committed
fix(getmore-killcursor): slaveOk shall not be included on these
The slaveOk flag SHOULD not be set for all follow-up getMore and killCursors commands. The cursor on the server keeps the original slaveOk value first set on the find command.
1 parent 17b3f65 commit 40fb2f4

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

lib/wireprotocol/3_2_support.js

-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const MongoError = require('../error').MongoError;
77
const MongoNetworkError = require('../error').MongoNetworkError;
88
const getReadPreference = require('./shared').getReadPreference;
99
const incrementStatementId = require('../topologies/shared').incrementStatementId;
10-
const ReadPreference = require('../topologies/read_preference');
1110
const BSON = retrieveBSON();
1211
const Long = BSON.Long;
1312

@@ -166,9 +165,6 @@ WireProtocol.prototype.killCursor = function(bson, ns, cursorState, pool, callba
166165
returnFieldSelector: null
167166
});
168167

169-
// Set query flags
170-
query.slaveOk = true;
171-
172168
// Kill cursor callback
173169
var killCursorCallback = function(err, result) {
174170
if (err) {
@@ -255,9 +251,6 @@ WireProtocol.prototype.getMore = function(
255251
returnFieldSelector: null
256252
});
257253

258-
// Set query flags
259-
query.slaveOk = true;
260-
261254
// Query callback
262255
var queryCallback = function(err, result) {
263256
if (err) return callback(err);

0 commit comments

Comments
 (0)