summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jstests/sharding/change_stream_error_label.js1
-rw-r--r--jstests/sharding/mongos_does_not_gossip_logical_time_without_keys.js1
-rw-r--r--src/mongo/shell/shardingtest.js4
3 files changed, 2 insertions, 4 deletions
diff --git a/jstests/sharding/change_stream_error_label.js b/jstests/sharding/change_stream_error_label.js
index 1b8722fb593..37467f8ff85 100644
--- a/jstests/sharding/change_stream_error_label.js
+++ b/jstests/sharding/change_stream_error_label.js
@@ -4,7 +4,6 @@
* @tags: [
* requires_sharding,
* uses_change_streams,
- * requires_persistence,
* ]
*/
(function() {
diff --git a/jstests/sharding/mongos_does_not_gossip_logical_time_without_keys.js b/jstests/sharding/mongos_does_not_gossip_logical_time_without_keys.js
index 8e7b41f0db4..b2429127041 100644
--- a/jstests/sharding/mongos_does_not_gossip_logical_time_without_keys.js
+++ b/jstests/sharding/mongos_does_not_gossip_logical_time_without_keys.js
@@ -1,7 +1,6 @@
/**
* Tests that mongos does not gossip cluster time metadata until at least one key is created on the
* config server, and that it does not block waiting for keys at startup.
- * @tags: [requires_persistence]
*/
(function() {
diff --git a/src/mongo/shell/shardingtest.js b/src/mongo/shell/shardingtest.js
index 709ca6d5ca2..83947bdae58 100644
--- a/src/mongo/shell/shardingtest.js
+++ b/src/mongo/shell/shardingtest.js
@@ -1358,8 +1358,8 @@ var ShardingTest = function(params) {
var setIsConfigSvr = false;
if (isConfigShardMode && i == 0) {
- otherParams.configOptions =
- Object.merge(otherParams.configOptions, {configsvr: ""});
+ otherParams.configOptions = Object.merge(
+ otherParams.configOptions, {configsvr: "", storageEngine: "wiredTiger"});
rsDefaults = Object.merge(rsDefaults, otherParams.configOptions);
setIsConfigSvr = true;
} else {