summaryrefslogtreecommitdiff
path: root/jstests/libs
diff options
context:
space:
mode:
authorCheahuychou Mao <cheahuychou.mao@mongodb.com>2020-01-13 21:22:34 +0000
committerA. Jesse Jiryu Davis <jesse@mongodb.com>2020-01-27 15:38:04 -0500
commitf25d0d92376ecd88bbb7cd54b303623d93a10f31 (patch)
tree725c0a12cd39253c7997bc56f22168791f31b7b2 /jstests/libs
parente7c6df9b0634c590b218774be15f166ce85e6006 (diff)
downloadmongo-f25d0d92376ecd88bbb7cd54b303623d93a10f31.tar.gz
SERVER-45513 Make index_operations_abort_concurrent_outgoing_migrations.js only check that index commands did not run on recipient when the commands are run after steady state is reached
Diffstat (limited to 'jstests/libs')
-rw-r--r--jstests/libs/override_methods/check_indexes_consistent_across_cluster.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/libs/override_methods/check_indexes_consistent_across_cluster.js b/jstests/libs/override_methods/check_indexes_consistent_across_cluster.js
index 228d62e6bab..465b09c8ccc 100644
--- a/jstests/libs/override_methods/check_indexes_consistent_across_cluster.js
+++ b/jstests/libs/override_methods/check_indexes_consistent_across_cluster.js
@@ -94,7 +94,7 @@ ShardingTest.prototype.checkIndexesConsistentAcrossCluster = function() {
}
// Find inconsistent indexes. For the example above:
- // {"rs0": [{"spec" : {"v" : 2, "key" : {"_id" : 1}, "name" : "_id_"}}], "rs1" : []};
+ // {"rs0": [{"spec" : {"v" : 2, "key" : {"x" : 1}, "name" : "x_1"}}], "rs1" : []};
const inconsistentIndexesOnShard = {};
let isConsistent = true;
for (const indexDoc of indexDocs) {