summaryrefslogtreecommitdiff
path: root/jstests/replsets/reindex.js
diff options
context:
space:
mode:
authorRishab Joshi <rishab.joshi@mongodb.com>2020-11-10 13:42:25 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-11-12 10:38:50 +0000
commite69c967ff8b53634770438dfe9a5c7d13548351b (patch)
treecf8f6b10b2374f388d51213d172f28b4fd3d05e8 /jstests/replsets/reindex.js
parent916c466afac10d34e61b6ca42a12e35d7c4828f1 (diff)
downloadmongo-e69c967ff8b53634770438dfe9a5c7d13548351b.tar.gz
SERVER-50442 Remove ensureIndex shell function This commit also replaces all the usages of ensureIndex() with createIndex() in JS tests and JS shell
Diffstat (limited to 'jstests/replsets/reindex.js')
-rw-r--r--jstests/replsets/reindex.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/replsets/reindex.js b/jstests/replsets/reindex.js
index 454e72f25e8..211fbe55001 100644
--- a/jstests/replsets/reindex.js
+++ b/jstests/replsets/reindex.js
@@ -26,7 +26,7 @@ const secondaryDB = secondary.getDB(dbName);
const secondaryColl = secondaryDB.getCollection(collName);
assert.commandWorked(primaryColl.insert({a: 1000}));
-assert.commandWorked(primaryColl.ensureIndex({a: 1}));
+assert.commandWorked(primaryColl.createIndex({a: 1}));
replTest.awaitReplication();
replTest.awaitReplication();
@@ -59,7 +59,7 @@ const testDB = standalone.getDB(dbName);
const testColl = testDB.getCollection(collName);
assert.commandWorked(testColl.insert({a: 1000}));
-assert.commandWorked(testColl.ensureIndex({a: 1}));
+assert.commandWorked(testColl.createIndex({a: 1}));
assert.eq(2, testColl.getIndexes().length, "Standalone didn't have proper indexes before reindex");
assert.commandWorked(testColl.reIndex());