summaryrefslogtreecommitdiff
path: root/jstests/disk
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2020-05-07 09:56:16 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-05-07 14:08:38 +0000
commit02394766d7aa0f17a9fbf826e9767ae40e41c59a (patch)
tree01c3044cdde63d0a1a733063d7f10f792270704b /jstests/disk
parent474e6228cf95e16aa205256a0f15ef9f9388252d (diff)
downloadmongo-02394766d7aa0f17a9fbf826e9767ae40e41c59a.tar.gz
SERVER-38961 remove IndexBuildTest.supportsTwoPhaseIndexBuild() references from jsCore and disk tests
Diffstat (limited to 'jstests/disk')
-rw-r--r--jstests/disk/repair_unfinished_indexes.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/jstests/disk/repair_unfinished_indexes.js b/jstests/disk/repair_unfinished_indexes.js
index 91e2f3b0d3a..0f2a84fc68a 100644
--- a/jstests/disk/repair_unfinished_indexes.js
+++ b/jstests/disk/repair_unfinished_indexes.js
@@ -20,12 +20,6 @@ replSet.initiate();
const primary = replSet.getPrimary();
const primaryDB = primary.getDB(dbName);
-if (!IndexBuildTest.supportsTwoPhaseIndexBuild(primary)) {
- jsTestLog('Two phase index builds not supported, skipping test.');
- rst.stopSet();
- return;
-}
-
const secondary = replSet.getSecondary();
const secondaryDB = secondary.getDB(dbName);
const secondaryPort = secondary.port;