summaryrefslogtreecommitdiff
path: root/jstests/auth/resource_pattern_matching.js
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2017-04-27 14:26:11 -0400
committerAndrew Morrow <acm@mongodb.com>2017-04-27 19:55:38 -0400
commit2fac57f28272d900e7926bed481e42b01cc45d00 (patch)
tree422c7c3a2b7e7a8777c4a47c22d249eaec160365 /jstests/auth/resource_pattern_matching.js
parentb3b32ae51349a66670f2ef17dc88f43b3ab9b90f (diff)
downloadmongo-2fac57f28272d900e7926bed481e42b01cc45d00.tar.gz
SERVER-29000 Remove the miniwebserver and derivatives
Diffstat (limited to 'jstests/auth/resource_pattern_matching.js')
-rw-r--r--jstests/auth/resource_pattern_matching.js14
1 files changed, 5 insertions, 9 deletions
diff --git a/jstests/auth/resource_pattern_matching.js b/jstests/auth/resource_pattern_matching.js
index 0d9781efd4b..dd83b8bf273 100644
--- a/jstests/auth/resource_pattern_matching.js
+++ b/jstests/auth/resource_pattern_matching.js
@@ -228,12 +228,8 @@ MongoRunner.stopMongod(conn);
print('--- done standalone node test ---');
print('--- replica set test ---');
-var rst = new ReplSetTest({
- name: 'testset',
- nodes: 2,
- nodeOptions: {'auth': null, 'httpinterface': null},
- keyFile: keyfile
-});
+var rst =
+ new ReplSetTest({name: 'testset', nodes: 2, nodeOptions: {'auth': null}, keyFile: keyfile});
rst.startSet();
rst.initiate();
@@ -250,9 +246,9 @@ var st = new ShardingTest({
shard: 1,
keyFile: keyfile,
other: {
- mongosOptions: {'auth': null, 'httpinterface': null},
- configOptions: {'auth': null, 'httpinterface': null},
- shardOptions: {'auth': null, 'httpinterface': null}
+ mongosOptions: {'auth': null},
+ configOptions: {'auth': null},
+ shardOptions: {'auth': null}
}
});
run_tests(st.s0.getDB('admin'), st.s1.getDB('admin'));