diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-12-21 11:28:54 -0500 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-12-21 15:20:12 -0500 |
commit | e2e4c75844f01e0aba6423502c828119b5287764 (patch) | |
tree | 3c6f9639a19b6c9673f05304d0835d4b280ee497 /jstests/sharding/merge_chunks_test.js | |
parent | 999325ecac2a85163bbfdf29b4adf94795dfee21 (diff) | |
download | mongo-e2e4c75844f01e0aba6423502c828119b5287764.tar.gz |
SERVER-21050 Continuous config stepdown logging changes
This commit is part of the overall change to enable continuous config
server stepdown and it includes improvements to logging and test
validation. It does not actually enable the stepdown thread.
Diffstat (limited to 'jstests/sharding/merge_chunks_test.js')
-rw-r--r-- | jstests/sharding/merge_chunks_test.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/sharding/merge_chunks_test.js b/jstests/sharding/merge_chunks_test.js index 612a184fc67..2a853bbd1d9 100644 --- a/jstests/sharding/merge_chunks_test.js +++ b/jstests/sharding/merge_chunks_test.js @@ -1,11 +1,10 @@ // // Tests that merging chunks via mongos works/doesn't work with different chunk configurations // +(function() { +'use strict'; -var options = { shardOptions : { verbose : 0 } }; - -var st = new ShardingTest({ shards : 2, mongos : 2, other : options }); -st.stopBalancer(); +var st = new ShardingTest({ shards : 2, mongos : 2 }); var mongos = st.s0; var staleMongos = st.s1; @@ -120,3 +119,4 @@ st.printShardingStatus(); st.stop(); +})(); |