2017-08-01 17:29:51 +02:00
|
|
|
load("jstests/libs/kill_sessions.js");
|
|
|
|
|
|
|
|
(function() {
|
2019-07-27 00:20:35 +02:00
|
|
|
'use strict';
|
2017-08-01 17:29:51 +02:00
|
|
|
|
2019-07-27 00:20:35 +02:00
|
|
|
// TODO SERVER-35447: This test involves killing all sessions, which will not work as expected
|
|
|
|
// if the kill command is sent with an implicit session.
|
|
|
|
TestData.disableImplicitSessions = true;
|
2018-05-18 23:34:06 +02:00
|
|
|
|
2019-07-27 00:20:35 +02:00
|
|
|
var conn = MongoRunner.runMongod();
|
|
|
|
KillSessionsTestHelper.runNoAuth(conn, conn, [conn]);
|
|
|
|
MongoRunner.stopMongod(conn);
|
2017-08-01 17:29:51 +02:00
|
|
|
})();
|