summaryrefslogtreecommitdiff
path: root/jstests/sharding/authCommands.js
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2016-05-03 10:15:20 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2016-05-04 16:09:10 -0400
commit29ff4c8033c8c22cf212e13bd27be05649c03f3e (patch)
treebb86f9263ccfa6ea13cb91f5bef3f2c4fb93bdcb /jstests/sharding/authCommands.js
parent7a014ed60bf96ee11ce11acfa931268422030ca3 (diff)
downloadmongo-29ff4c8033c8c22cf212e13bd27be05649c03f3e.tar.gz
SERVER-23733 Tests should not write chunkSize to config.settings directly
Instead, they should pass it as parameter to ShardingTest. This change is in preparation for removing the chunkSize parameter to mongos.
Diffstat (limited to 'jstests/sharding/authCommands.js')
-rw-r--r--jstests/sharding/authCommands.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/sharding/authCommands.js b/jstests/sharding/authCommands.js
index cb1887d4aae..03e77848974 100644
--- a/jstests/sharding/authCommands.js
+++ b/jstests/sharding/authCommands.js
@@ -10,9 +10,9 @@ var doTest = function() {
var st = new ShardingTest({
keyFile: 'jstests/libs/key1',
shards: 2,
- chunksize: 2,
+ chunkSize: 2,
rs: rsOpts,
- other: {nopreallocj: 1, useHostname: false}
+ other: {useHostname: false},
});
var mongos = st.s;