summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2020-03-27 17:04:22 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-03-27 21:18:42 +0000
commitad4451662ed0e9942e6d18d838b27aeaa71d64a7 (patch)
tree718f3a6722fc1be15d68b29dce883ce3759cdabf
parent37a559ade62d693b2b85d75ecb9cdc2411a7d69f (diff)
downloadmongo-ad4451662ed0e9942e6d18d838b27aeaa71d64a7.tar.gz
Revert "SERVER-47131 Do not run 'rolling_index_builds_shutdown_early.js' on the commit quorum off builder"
This reverts commit 8564f6263c90980d7d37c9c95f96238bb8d9f015.
-rw-r--r--jstests/noPassthrough/rolling_index_builds_shutdown_early.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/jstests/noPassthrough/rolling_index_builds_shutdown_early.js b/jstests/noPassthrough/rolling_index_builds_shutdown_early.js
index c036c9b81b0..1f76c63c3f8 100644
--- a/jstests/noPassthrough/rolling_index_builds_shutdown_early.js
+++ b/jstests/noPassthrough/rolling_index_builds_shutdown_early.js
@@ -47,9 +47,8 @@ let primary = replTest.getPrimary();
let primaryDB = primary.getDB(dbName);
let coll = primaryDB.getCollection(collName);
-if (!IndexBuildTest.supportsTwoPhaseIndexBuild(primary) ||
- !IndexBuildTest.indexBuildCommitQuorumEnabled(primary)) {
- jsTestLog('Two phase index builds or commit quorum are not supported, skipping test.');
+if (!IndexBuildTest.supportsTwoPhaseIndexBuild(primary)) {
+ jsTestLog('Two phase index builds not supported, skipping test.');
replTest.stopSet();
return;
}