summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEsha Maharishi <esha.maharishi@mongodb.com>2016-09-13 13:28:01 -0400
committerEsha Maharishi <esha.maharishi@mongodb.com>2016-09-13 13:28:12 -0400
commit9aede6239ab11f4dab005bdde353871cd89d79d1 (patch)
tree64546d308c997bdb63dd1dd0e6c8ec53c43f63b0
parent7c3878adaf73736c33c7f65b718d8b5705c36142 (diff)
downloadmongo-9aede6239ab11f4dab005bdde353871cd89d79d1.tar.gz
SERVER-26008 start config replica set specifically with wiredTiger storage engine
-rw-r--r--jstests/fail_point/set_failpoint_through_set_parameter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/fail_point/set_failpoint_through_set_parameter.js b/jstests/fail_point/set_failpoint_through_set_parameter.js
index 3ba05f51582..97bb7a304b9 100644
--- a/jstests/fail_point/set_failpoint_through_set_parameter.js
+++ b/jstests/fail_point/set_failpoint_through_set_parameter.js
@@ -21,7 +21,7 @@
// In order to be able connect to a mongos that starts up successfully, start a config replica
// set so that we can provide a valid config connection string to the mongos.
var configRS = new ReplSetTest({nodes: 3});
- configRS.startSet({'configsvr': ''});
+ configRS.startSet({configsvr: '', storageEngine: 'wiredTiger'});
configRS.initiate();
// Setting a failpoint via --setParameter fails if enableTestCommands is not on.