summaryrefslogtreecommitdiff
path: root/jstests/sharding/mrShardedOutput.js
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-11-06 17:20:38 -0500
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-11-11 11:01:18 -0500
commit706ac9026588f6473f356954069378e9acc1c40a (patch)
tree1c6de590d3c0c72fc3825d5cb1da1014dd0d1860 /jstests/sharding/mrShardedOutput.js
parenta7d5488ac27f114546752f2839e5547c883c0516 (diff)
downloadmongo-706ac9026588f6473f356954069378e9acc1c40a.tar.gz
SERVER-21186 Make all sharding tests use default verbosity of 1
The default ShardingTest verbosity is currently zero, but we have many tests, which bump it to 1 and even higher. Since verbosity level of 0 is sometimes insufficient for investigating transient failures, this change makes the default to be 1 and removes all places, which explicitly make it 1 or higher.
Diffstat (limited to 'jstests/sharding/mrShardedOutput.js')
-rw-r--r--jstests/sharding/mrShardedOutput.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/jstests/sharding/mrShardedOutput.js b/jstests/sharding/mrShardedOutput.js
index b30c45b8aa2..55b95386a7b 100644
--- a/jstests/sharding/mrShardedOutput.js
+++ b/jstests/sharding/mrShardedOutput.js
@@ -4,9 +4,7 @@
// collection input twice the size of the first and outputs it to the new sharded
// collection created in the first pass.
-var st = new ShardingTest({ shards: 2, verbose: 1, other: { chunkSize: 1 }});
-
-st.stopBalancer();
+var st = new ShardingTest({ shards: 2, other: { chunkSize: 1 }});
var config = st.getDB("config");
st.adminCommand( { enablesharding: "test" } );