diff options
author | Randolph Tan <randolph@10gen.com> | 2015-04-10 18:06:07 -0400 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2015-05-15 10:11:31 -0400 |
commit | 280fbae9044af29bc63068dbe9c4e7846e9e6517 (patch) | |
tree | 96b6490b5aa9d8ad0facd9356367ecd5f3534a8d /jstests/sharding/limit_push.js | |
parent | f3d242c808ec6c1b7145dd3f084da438829552cb (diff) | |
download | mongo-280fbae9044af29bc63068dbe9c4e7846e9e6517.tar.gz |
SERVER-18044 Make sharding test explicitly set primary shards for databases
Diffstat (limited to 'jstests/sharding/limit_push.js')
-rw-r--r-- | jstests/sharding/limit_push.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/jstests/sharding/limit_push.js b/jstests/sharding/limit_push.js index ad9d8b9a383..5aa9bd5bee0 100644 --- a/jstests/sharding/limit_push.js +++ b/jstests/sharding/limit_push.js @@ -15,6 +15,7 @@ assert.eq( 100 , db.limit_push.find().length() , "Incorrect number of documents" // Shard the collection s.adminCommand( { enablesharding : "test" } ); +s.ensurePrimaryShard('test', 'shard0001'); s.adminCommand( { shardcollection : "test.limit_push" , key : { x : 1 } } ); // Now split the and move the data between the shards |