summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
Diffstat (limited to 'jstests')
-rw-r--r--jstests/sharding/coll_epoch_test1.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/jstests/sharding/coll_epoch_test1.js b/jstests/sharding/coll_epoch_test1.js
index 28962732c25..0a65589ece6 100644
--- a/jstests/sharding/coll_epoch_test1.js
+++ b/jstests/sharding/coll_epoch_test1.js
@@ -1,7 +1,7 @@
// Tests various cases of dropping and recreating collections in the same namespace with multiple
// mongoses
-var st = new ShardingTest({shards: 3, mongos: 3, verbose: 1});
+var st = new ShardingTest({shards: 3, mongos: 3});
// Balancer is by default stopped, thus it will not interfere
// Use separate mongoses for admin, inserting data, and validating results, so no
@@ -13,8 +13,6 @@ var config = st.s.getDB("config");
var admin = st.s.getDB("admin");
var coll = st.s.getCollection("foo.bar");
-insertMongos.getDB("admin").runCommand({setParameter: 1, traceExceptions: true});
-
var shards = {};
config.shards.find().forEach(function(doc) {
shards[doc._id] = new Mongo(doc.host);