summaryrefslogtreecommitdiff
path: root/jstests/sharding/multi_mongos2.js
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-05 15:13:45 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-09 14:46:30 -0500
commitfb46f0112723f46d31b04c84aeb8aa6a3b08aa1f (patch)
tree85420b8810389c584c00a51510a4a6fb6222ee0f /jstests/sharding/multi_mongos2.js
parente0c067b5f7a10308c5a52f2dbb662e7cfdb41e1e (diff)
downloadmongo-fb46f0112723f46d31b04c84aeb8aa6a3b08aa1f.tar.gz
SERVER-22341 fix jslint errors in jstests/sharding with eslint --fix
Diffstat (limited to 'jstests/sharding/multi_mongos2.js')
-rw-r--r--jstests/sharding/multi_mongos2.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/jstests/sharding/multi_mongos2.js b/jstests/sharding/multi_mongos2.js
index d6dbe8cb943..41458c3b223 100644
--- a/jstests/sharding/multi_mongos2.js
+++ b/jstests/sharding/multi_mongos2.js
@@ -8,11 +8,11 @@ s1.adminCommand( { enablesharding : "test" } );
s1.ensurePrimaryShard('test', 'shard0001');
s1.adminCommand( { shardcollection : "test.foo" , key : { num : 1 } } );
-s1.config.databases.find().forEach( printjson )
+s1.config.databases.find().forEach( printjson );
// test queries
-s1.getDB('test').existing.insert({_id:1})
+s1.getDB('test').existing.insert({_id:1});
assert.eq(1, s1.getDB('test').existing.count({_id:1}));
assert.eq(1, s2.getDB('test').existing.count({_id:1}));
@@ -27,29 +27,29 @@ assert.eq(1 , res.ok, tojson(res));
s1.startBalancer();
-printjson( s2.adminCommand( {"getShardVersion" : "test.existing" } ) )
-printjson( new Mongo(s1.getServer( "test" ).name).getDB( "admin" ).adminCommand( {"getShardVersion" : "test.existing" } ) )
+printjson( s2.adminCommand( {"getShardVersion" : "test.existing" } ) );
+printjson( new Mongo(s1.getServer( "test" ).name).getDB( "admin" ).adminCommand( {"getShardVersion" : "test.existing" } ) );
assert.eq(1, s1.getDB('test').existing.count({_id:1})); // SERVER-2828
assert.eq(1, s2.getDB('test').existing.count({_id:1}));
// test stats
-s1.getDB('test').existing2.insert({_id:1})
+s1.getDB('test').existing2.insert({_id:1});
assert.eq(1, s1.getDB('test').existing2.count({_id:1}));
assert.eq(1, s2.getDB('test').existing2.count({_id:1}));
s2.adminCommand( { shardcollection : "test.existing2" , key : { _id : 1 } } );
assert.commandWorked(s2.adminCommand({ split: "test.existing2", middle: { _id: 5 }}));
-var res = s1.getDB('test').existing2.stats()
-printjson( res )
+var res = s1.getDB('test').existing2.stats();
+printjson( res );
assert.eq(true, res.sharded); //SERVER-2828
assert.eq(true, s2.getDB('test').existing2.stats().sharded);
// test admin commands
-s1.getDB('test').existing3.insert({_id:1})
+s1.getDB('test').existing3.insert({_id:1});
assert.eq(1, s1.getDB('test').existing3.count({_id:1}));
assert.eq(1, s2.getDB('test').existing3.count({_id:1}));