diff options
author | Esha Maharishi <esha.maharishi@mongodb.com> | 2016-09-27 15:39:26 -0400 |
---|---|---|
committer | Esha Maharishi <esha.maharishi@mongodb.com> | 2016-09-29 14:38:42 -0400 |
commit | c47eb7408d712ac75c09b54079abfd0c28346a07 (patch) | |
tree | bf8cfb3952853695e3c9906eb85f923323d07c07 /jstests/sharding/movechunk_with_noMoveParanoia.js | |
parent | ed355c631bd460cbd75f50e18d71f7df37b00bfe (diff) | |
download | mongo-c47eb7408d712ac75c09b54079abfd0c28346a07.tar.gz |
SERVER-26309 Disable auto splitting in ShardingTest by default
Diffstat (limited to 'jstests/sharding/movechunk_with_noMoveParanoia.js')
-rw-r--r-- | jstests/sharding/movechunk_with_noMoveParanoia.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/jstests/sharding/movechunk_with_noMoveParanoia.js b/jstests/sharding/movechunk_with_noMoveParanoia.js index 4e75421543a..2ca6ef96f16 100644 --- a/jstests/sharding/movechunk_with_noMoveParanoia.js +++ b/jstests/sharding/movechunk_with_noMoveParanoia.js @@ -1,8 +1,11 @@ /** * This test sets moveParanoia flag and then check that the directory is created with the moved data */ -var st = new ShardingTest( - {shards: 2, mongos: 1, other: {chunkSize: 1, shardOptions: {noMoveParanoia: ""}}}); +var st = new ShardingTest({ + shards: 2, + mongos: 1, + other: {chunkSize: 1, enableAutoSplit: true, shardOptions: {noMoveParanoia: ""}} +}); load("jstests/sharding/movechunk_include.js"); setupMoveChunkTest(st); |