From abbc44c381fa6dc18f1f307dbfd469eabe65425c Mon Sep 17 00:00:00 2001 From: Jonathan Abrahams Date: Fri, 26 Feb 2016 13:43:41 -0500 Subject: SERVER-22704 Remove SCCC support from the concurrency suite --- jstests/concurrency/fsm_libs/runner.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'jstests/concurrency/fsm_libs/runner.js') diff --git a/jstests/concurrency/fsm_libs/runner.js b/jstests/concurrency/fsm_libs/runner.js index ff27744e596..78f7f9b74ee 100644 --- a/jstests/concurrency/fsm_libs/runner.js +++ b/jstests/concurrency/fsm_libs/runner.js @@ -390,13 +390,8 @@ var runner = (function() { // lock is already held by the balancer or by a workload operation. The increased wait // is shorter than the distributed-lock-takeover period because otherwise the node // would be assumed to be down and the lock would be overtaken. - if (cluster.isUsingLegacyConfigServers()) { - clusterOptions.setupFunctions.mongos.push(increaseDropDistLockTimeoutSCCC); - clusterOptions.teardownFunctions.mongos.push(resetDropDistLockTimeoutSCCC); - } else { - clusterOptions.setupFunctions.mongos.push(increaseDropDistLockTimeout); - clusterOptions.teardownFunctions.mongos.push(resetDropDistLockTimeout); - } + clusterOptions.setupFunctions.mongos.push(increaseDropDistLockTimeout); + clusterOptions.teardownFunctions.mongos.push(resetDropDistLockTimeout); } function loadWorkloadContext(workloads, context, executionOptions, applyMultipliers) { -- cgit v1.2.1