summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/bench_test_crud_commands.js
diff options
context:
space:
mode:
authorSpencer Jackson <spencer.jackson@mongodb.com>2016-09-20 16:59:23 -0400
committerSpencer Jackson <spencer.jackson@mongodb.com>2016-09-22 14:19:28 -0400
commit52d2b4cd1c418aaa616fa73c79ad1f69eae80551 (patch)
treea1cfae9cf63bbd6ed3eea59681a2b7705ee02469 /jstests/noPassthroughWithMongod/bench_test_crud_commands.js
parent97c2ef18995abf457888d5b40bf24fa0feb6d7a9 (diff)
downloadmongo-52d2b4cd1c418aaa616fa73c79ad1f69eae80551.tar.gz
SERVER-6388: Make bench_test*.js use auth in jscore_auth
Diffstat (limited to 'jstests/noPassthroughWithMongod/bench_test_crud_commands.js')
-rw-r--r--jstests/noPassthroughWithMongod/bench_test_crud_commands.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthroughWithMongod/bench_test_crud_commands.js b/jstests/noPassthroughWithMongod/bench_test_crud_commands.js
index 938940615a5..f2f18c10ffc 100644
--- a/jstests/noPassthroughWithMongod/bench_test_crud_commands.js
+++ b/jstests/noPassthroughWithMongod/bench_test_crud_commands.js
@@ -23,8 +23,8 @@
var benchArgs = {ops: benchOps, parallel: 2, seconds: 1, host: db.getMongo().host};
if (jsTest.options().auth) {
benchArgs['db'] = 'admin';
- benchArgs['username'] = jsTest.options().adminUser;
- benchArgs['password'] = jsTest.options().adminPassword;
+ benchArgs['username'] = jsTest.options().authUser;
+ benchArgs['password'] = jsTest.options().authPassword;
}
return benchRun(benchArgs);
}