diff options
author | Eliot Horowitz <eliot@10gen.com> | 2014-10-11 18:44:34 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2014-10-11 18:48:31 -0400 |
commit | 6fe83c5318b7eaae9f0aa5904e063dcd068cd5a1 (patch) | |
tree | 116822b170ad272ab84df08f6217d3ecb0f2dc34 /jstests/sharding | |
parent | 35440470067af3bacff34f21e6065b5a25c7f932 (diff) | |
download | mongo-6fe83c5318b7eaae9f0aa5904e063dcd068cd5a1.tar.gz |
SERVER-13635: make sharding test more robust
Diffstat (limited to 'jstests/sharding')
-rw-r--r-- | jstests/sharding/top_chunk_autosplit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/top_chunk_autosplit.js b/jstests/sharding/top_chunk_autosplit.js index 3063da1d416..621bab10ee2 100644 --- a/jstests/sharding/top_chunk_autosplit.js +++ b/jstests/sharding/top_chunk_autosplit.js @@ -58,7 +58,7 @@ testDB.adminCommand({ split: 'test.user', middle: { x: 0 }}); assert.commandWorked( testDB.adminCommand({ moveChunk: 'test.user', find: { x: 0 }, to: 'shard0000' })); -for (var x = -100; x < 100; x+= 10) { +for (var x = -20; x < 100; x+= 10) { testDB.adminCommand({ split: 'test.user', middle: { x: x }}); } |