summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Graetzer <simon.gratzer@mongodb.com>2021-06-10 11:09:50 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-06-10 15:20:08 +0000
commite2a6ca78b0faed0f9ffde1c026c1ddbe759b31bd (patch)
treef3301390e9bea95d0caf7b8e2028edeec5a99b33
parent23e06130b77d52523bf43b92f00ce51680939cb9 (diff)
downloadmongo-e2a6ca78b0faed0f9ffde1c026c1ddbe759b31bd.tar.gz
SERVER-51271 Obsolete check for FCV 3.4 in jstests/sharding/kill_sessions.js
-rw-r--r--jstests/sharding/kill_sessions.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/jstests/sharding/kill_sessions.js b/jstests/sharding/kill_sessions.js
index 4c710c38ffa..65d7bced0bd 100644
--- a/jstests/sharding/kill_sessions.js
+++ b/jstests/sharding/kill_sessions.js
@@ -48,12 +48,6 @@ function runTests(needAuth) {
host.getDB("local").auth("__system", "foopdedoop");
}
hosts.push(host);
-
- assert.soon(function() {
- var fcv =
- host.getDB("admin").runCommand({getParameter: 1, featureCompatibilityVersion: 1});
- return fcv["ok"] && fcv["featureCompatibilityVersion"] != "3.4";
- });
}
var args = [forExec, forKill, hosts];