diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2016-02-26 13:43:41 -0500 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2016-02-26 13:43:59 -0500 |
commit | abbc44c381fa6dc18f1f307dbfd469eabe65425c (patch) | |
tree | f7b5f49f3dad454666f792dfcaf10bca80983483 /jstests/concurrency/fsm_libs/runner.js | |
parent | 90b12248502592281f430890c838b2834d11d1b3 (diff) | |
download | mongo-abbc44c381fa6dc18f1f307dbfd469eabe65425c.tar.gz |
SERVER-22704 Remove SCCC support from the concurrency suite
Diffstat (limited to 'jstests/concurrency/fsm_libs/runner.js')
-rw-r--r-- | jstests/concurrency/fsm_libs/runner.js | 9 |
1 files changed, 2 insertions, 7 deletions
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) { |