summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorAmirsaman Memaripour <amirsaman.memaripour@mongodb.com>2020-06-22 16:30:35 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-06-23 22:36:50 +0000
commit311d7ccd0b6fd24122e28b7e8f3a1e191dd4078a (patch)
tree5e18af20c70eaf568d93778b1ee0052da3a91ace /buildscripts
parent36bf915c32d551ad557ec7a1fa41890037e9f54f (diff)
downloadmongo-311d7ccd0b6fd24122e28b7e8f3a1e191dd4078a.tar.gz
SERVER-48973 Remove ServiceExecutorAdaptive
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokelib/core/programs.py2
-rw-r--r--buildscripts/resmokelib/run/__init__.py3
2 files changed, 0 insertions, 5 deletions
diff --git a/buildscripts/resmokelib/core/programs.py b/buildscripts/resmokelib/core/programs.py
index a9931c2e5ad..d18f5d9ac70 100644
--- a/buildscripts/resmokelib/core/programs.py
+++ b/buildscripts/resmokelib/core/programs.py
@@ -214,7 +214,6 @@ def mongod_program( # pylint: disable=too-many-branches,too-many-statements
shortcut_opts = {
"enableMajorityReadConcern": config.MAJORITY_READ_CONCERN,
"nojournal": config.NO_JOURNAL,
- "serviceExecutor": config.SERVICE_EXECUTOR,
"storageEngine": config.STORAGE_ENGINE,
"transportLayer": config.TRANSPORT_LAYER,
"wiredTigerCollectionConfigString": config.WT_COLL_CONFIG,
@@ -327,7 +326,6 @@ def mongo_shell_program( # pylint: disable=too-many-branches,too-many-locals,to
"enableMajorityReadConcern": (config.MAJORITY_READ_CONCERN, True),
"mixedBinVersions": (config.MIXED_BIN_VERSIONS, ""),
"noJournal": (config.NO_JOURNAL, False),
- "serviceExecutor": (config.SERVICE_EXECUTOR, ""),
"storageEngine": (config.STORAGE_ENGINE, ""),
"storageEngineCacheSizeGB": (config.STORAGE_ENGINE_CACHE_SIZE, ""),
"testName": (test_name, ""),
diff --git a/buildscripts/resmokelib/run/__init__.py b/buildscripts/resmokelib/run/__init__.py
index 62405acb14b..6b906597e14 100644
--- a/buildscripts/resmokelib/run/__init__.py
+++ b/buildscripts/resmokelib/run/__init__.py
@@ -728,9 +728,6 @@ class RunPlugin(PluginInterface):
help=("Seed for the random number generator. Useful in combination with the"
" --shuffle option for producing a consistent test execution order."))
- parser.add_argument("--serviceExecutor", dest="service_executor", metavar="EXECUTOR",
- help="The service executor used by jstests")
-
parser.add_argument("--transportLayer", dest="transport_layer", metavar="TRANSPORT",
help="The transport layer used by jstests")