From 706ac9026588f6473f356954069378e9acc1c40a Mon Sep 17 00:00:00 2001 From: Kaloian Manassiev Date: Fri, 6 Nov 2015 17:20:38 -0500 Subject: 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. --- jstests/sharding/mrShardedOutput.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'jstests/sharding/mrShardedOutput.js') 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" } ); -- cgit v1.2.1