0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 09:06:21 +01:00
mongodb/jstests/noPassthrough/kill_sessions.js

14 lines
389 B
JavaScript
Raw Normal View History

2017-08-01 17:29:51 +02:00
load("jstests/libs/kill_sessions.js");
(function() {
'use strict';
2017-08-01 17:29:51 +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;
var conn = MongoRunner.runMongod();
KillSessionsTestHelper.runNoAuth(conn, conn, [conn]);
MongoRunner.stopMongod(conn);
2017-08-01 17:29:51 +02:00
})();