summaryrefslogtreecommitdiff
path: root/jstests/auth/list_all_local_sessions.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/auth/list_all_local_sessions.js')
-rw-r--r--jstests/auth/list_all_local_sessions.js9
1 files changed, 2 insertions, 7 deletions
diff --git a/jstests/auth/list_all_local_sessions.js b/jstests/auth/list_all_local_sessions.js
index 92363515a00..3efe32fc3e1 100644
--- a/jstests/auth/list_all_local_sessions.js
+++ b/jstests/auth/list_all_local_sessions.js
@@ -49,13 +49,8 @@ const mongod = MongoRunner.runMongod({auth: ""});
runListAllLocalSessionsTest(mongod);
MongoRunner.stopMongod(mongod);
-// TODO: Remove 'shardAsReplicaSet: false' when SERVER-32672 is fixed.
-const st = new ShardingTest({
- shards: 1,
- mongos: 1,
- config: 1,
- other: {keyFile: 'jstests/libs/key1', shardAsReplicaSet: false}
-});
+const st =
+ new ShardingTest({shards: 1, mongos: 1, config: 1, other: {keyFile: 'jstests/libs/key1'}});
runListAllLocalSessionsTest(st.s0);
st.stop();
})();