summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/out_majority_read_replset.js
diff options
context:
space:
mode:
authorYu Jin Kang Park <yujin.kang@mongodb.com>2022-06-15 13:19:49 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-07-06 12:17:47 +0000
commit574d60b493f71e6433a784dc3a2a8fd3fed171a1 (patch)
tree0ec8447e2cf81fa33f7729f779afe649ab0f344f /jstests/noPassthrough/out_majority_read_replset.js
parent02dfedb849374159219251422ada6035333e2c3b (diff)
downloadmongo-574d60b493f71e6433a784dc3a2a8fd3fed171a1.tar.gz
SERVER-55208: Remove nojournal,duroff and evergreen variant
Diffstat (limited to 'jstests/noPassthrough/out_majority_read_replset.js')
-rw-r--r--jstests/noPassthrough/out_majority_read_replset.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/jstests/noPassthrough/out_majority_read_replset.js b/jstests/noPassthrough/out_majority_read_replset.js
index a9a3029695d..1a91d796ecd 100644
--- a/jstests/noPassthrough/out_majority_read_replset.js
+++ b/jstests/noPassthrough/out_majority_read_replset.js
@@ -9,14 +9,6 @@ load("jstests/libs/write_concern_util.js"); // For stopReplicationOnSecondaries
const rst = new ReplSetTest({nodes: 2, nodeOptions: {enableMajorityReadConcern: ""}});
-// Skip this test if running with --nojournal and WiredTiger.
-if (jsTest.options().noJournal &&
- (!jsTest.options().storageEngine || jsTest.options().storageEngine === "wiredTiger")) {
- print("Skipping test because running WiredTiger without journaling isn't a valid" +
- " replica set configuration");
- return;
-}
-
rst.startSet();
rst.initiate();