diff options
Diffstat (limited to 'jstests/sharding/mr_noscripting.js')
-rw-r--r-- | jstests/sharding/mr_noscripting.js | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/jstests/sharding/mr_noscripting.js b/jstests/sharding/mr_noscripting.js index a7663d54ccc..a2940d51c43 100644 --- a/jstests/sharding/mr_noscripting.js +++ b/jstests/sharding/mr_noscripting.js @@ -1,17 +1,17 @@ var shardOpts = [ - { noscripting: '' }, - { } // just use default params + {noscripting: ''}, + {} // just use default params ]; -var st = new ShardingTest({ shards: shardOpts, other: { nopreallocj: 1 }}); +var st = new ShardingTest({shards: shardOpts, other: {nopreallocj: 1}}); var mongos = st.s; -st.shardColl('bar', { x: 1 }); +st.shardColl('bar', {x: 1}); var testDB = mongos.getDB('test'); var coll = testDB.bar; -coll.insert({ x: 1 }); +coll.insert({x: 1}); var map = function() { emit(this.x, 1); @@ -21,21 +21,19 @@ var reduce = function(key, values) { return 1; }; -var mrResult = testDB.runCommand({ mapreduce: 'bar', map: map, reduce: reduce, - out: { inline: 1 }}); +var mrResult = testDB.runCommand({mapreduce: 'bar', map: map, reduce: reduce, out: {inline: 1}}); assert.eq(0, mrResult.ok, 'mr result: ' + tojson(mrResult)); // Confirm that mongos did not crash -assert(testDB.adminCommand({ serverStatus: 1 }).ok); +assert(testDB.adminCommand({serverStatus: 1}).ok); // Confirm that the rest of the shards did not crash -mongos.getDB('config').shards.find().forEach(function (shardDoc){ +mongos.getDB('config').shards.find().forEach(function(shardDoc) { var shardConn = new Mongo(shardDoc.host); var adminDB = shardConn.getDB('admin'); - var cmdResult = adminDB.runCommand({ serverStatus: 1 }); + var cmdResult = adminDB.runCommand({serverStatus: 1}); - assert(cmdResult.ok, 'serverStatus on ' + shardDoc.host + - ' failed, result: ' + tojson(cmdResult)); + assert(cmdResult.ok, + 'serverStatus on ' + shardDoc.host + ' failed, result: ' + tojson(cmdResult)); }); - |