diff options
author | Geert Bosch <geert@mongodb.com> | 2018-06-20 16:56:05 -0400 |
---|---|---|
committer | Geert Bosch <geert@mongodb.com> | 2018-07-05 08:20:56 -0400 |
commit | 711c076ef57c0ce3517ab9385c2fd3a005c941b3 (patch) | |
tree | 840d01aa7eb8f341a098e9d0387e17a942a71f3a /jstests/sharding/mr_noscripting.js | |
parent | a76888797c5713382aa7139157880aad2db378d5 (diff) | |
download | mongo-711c076ef57c0ce3517ab9385c2fd3a005c941b3.tar.gz |
SERVER-35715 Remove nopreallocj and smallfiles options from tests
Diffstat (limited to 'jstests/sharding/mr_noscripting.js')
-rw-r--r-- | jstests/sharding/mr_noscripting.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/sharding/mr_noscripting.js b/jstests/sharding/mr_noscripting.js index 6bf196c587e..abe2e1fbbe4 100644 --- a/jstests/sharding/mr_noscripting.js +++ b/jstests/sharding/mr_noscripting.js @@ -3,7 +3,7 @@ var shardOpts = [ {} // just use default params ]; -var st = new ShardingTest({shards: shardOpts, other: {nopreallocj: 1}}); +var st = new ShardingTest({shards: shardOpts}); var mongos = st.s; st.shardColl('bar', {x: 1}); @@ -37,4 +37,4 @@ mongos.getDB('config').shards.find().forEach(function(shardDoc) { assert(cmdResult.ok, 'serverStatus on ' + shardDoc.host + ' failed, result: ' + tojson(cmdResult)); }); -st.stop();
\ No newline at end of file +st.stop(); |