mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 00:56:44 +01:00
14 lines
389 B
JavaScript
14 lines
389 B
JavaScript
load("jstests/libs/kill_sessions.js");
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
// 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;
|
|
|
|
var conn = MongoRunner.runMongod();
|
|
KillSessionsTestHelper.runNoAuth(conn, conn, [conn]);
|
|
MongoRunner.stopMongod(conn);
|
|
})();
|