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

Commit 3e57690

Browse files
committed
fix(command): only add $query to command in OP_QUERY
1 parent 2bc705c commit 3e57690

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

lib/wireprotocol/command.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,15 @@ function command(server, ns, cmd, options, callback) {
2222
const bson = server.s.bson;
2323
const pool = server.s.pool;
2424
const readPreference = getReadPreference(cmd, options);
25+
const shouldUseOpMsg = supportsOpMsg(server);
2526

2627
let finalCmd = Object.assign({}, cmd);
27-
if (isSharded(server) && readPreference && readPreference.preference !== 'primary') {
28+
if (
29+
isSharded(server) &&
30+
shouldUseOpMsg &&
31+
readPreference &&
32+
readPreference.preference !== 'primary'
33+
) {
2834
finalCmd = {
2935
$query: finalCmd,
3036
$readPreference: readPreference.toJSON()
@@ -50,7 +56,7 @@ function command(server, ns, cmd, options, callback) {
5056
commandOptions.slaveOk = readPreference.slaveOk();
5157

5258
const cmdNs = `${databaseNamespace(ns)}.$cmd`;
53-
const message = supportsOpMsg(server)
59+
const message = shouldUseOpMsg
5460
? new Msg(bson, cmdNs, finalCmd, commandOptions)
5561
: new Query(bson, cmdNs, finalCmd, commandOptions);
5662

0 commit comments

Comments
 (0)