summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheahuychou Mao <cheahuychou.mao@mongodb.com>2019-12-20 16:58:41 +0000
committerevergreen <evergreen@mongodb.com>2019-12-20 16:58:41 +0000
commit0d0c2234a1345be7c80f1f3550b900d87574eb97 (patch)
tree2360f9b53462f30b8a12d33139060a08b577bb0a
parent02e5823026f2d01fce35b729976209408c067d58 (diff)
downloadmongo-0d0c2234a1345be7c80f1f3550b900d87574eb97.tar.gz
SERVER-33597 Fix error message in allow_partial_results.js
-rw-r--r--jstests/sharding/allow_partial_results.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/allow_partial_results.js b/jstests/sharding/allow_partial_results.js
index a33d4d7ad41..81c2985218c 100644
--- a/jstests/sharding/allow_partial_results.js
+++ b/jstests/sharding/allow_partial_results.js
@@ -63,7 +63,7 @@ TestData.skipCheckingUUIDsConsistentAcrossCluster = true;
// (see SERVER-33597 for details). So when the mongos version is v3.6, the command should
// fail.
jsTest.log(
- "With 'allowPartialResults: true', if some shard down and mongos version is v4.2, find fails");
+ "With 'allowPartialResults: true', if some shard down and mongos version is v3.6, find fails");
assert.commandFailedWithCode(coll.runCommand({find: collName, allowPartialResults: true}),
ErrorCodes.FailedToSatisfyReadPreference);
} else {