diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-11-06 17:20:38 -0500 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-11-11 11:01:18 -0500 |
commit | 706ac9026588f6473f356954069378e9acc1c40a (patch) | |
tree | 1c6de590d3c0c72fc3825d5cb1da1014dd0d1860 /jstests/sharding/findandmodify2.js | |
parent | a7d5488ac27f114546752f2839e5547c883c0516 (diff) | |
download | mongo-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/findandmodify2.js')
-rw-r--r-- | jstests/sharding/findandmodify2.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/findandmodify2.js b/jstests/sharding/findandmodify2.js index 2ce2988c470..81fa6de93fd 100644 --- a/jstests/sharding/findandmodify2.js +++ b/jstests/sharding/findandmodify2.js @@ -1,4 +1,4 @@ -var s = new ShardingTest({ name: "find_and_modify_sharded_2", shards: 2, verbose: 2, mongos: 1, other: { chunkSize: 1 }}); +var s = new ShardingTest({ name: "find_and_modify_sharded_2", shards: 2, mongos: 1, other: { chunkSize: 1 }}); s.adminCommand( { enablesharding : "test" } ); var db = s.getDB( "test" ); |