diff options
author | Eddie Louie <eddie.louie@mongodb.com> | 2017-03-26 21:53:16 -0400 |
---|---|---|
committer | Eddie Louie <eddie.louie@mongodb.com> | 2017-03-27 16:57:58 -0400 |
commit | bc5c3286fba8cdb40fa6b2c195712075e3a05a1f (patch) | |
tree | 19792abb305b473fb70cd0fc148e80ecb202ba98 /buildscripts/resmokelib/config.py | |
parent | 465bd234f7931ced4ab2d4ee12e9d0274b5910d6 (diff) | |
download | mongo-bc5c3286fba8cdb40fa6b2c195712075e3a05a1f.tar.gz |
SERVER-26224 Add --staggerJobs option to resmoke.py
Diffstat (limited to 'buildscripts/resmokelib/config.py')
-rw-r--r-- | buildscripts/resmokelib/config.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/buildscripts/resmokelib/config.py b/buildscripts/resmokelib/config.py index a3e207f8e2b..b3ff831669a 100644 --- a/buildscripts/resmokelib/config.py +++ b/buildscripts/resmokelib/config.py @@ -55,6 +55,7 @@ DEFAULTS = { "shellReadMode": None, "shellWriteMode": None, "shuffle": False, + "staggerJobs": None, "storageEngine": None, "storageEngineCacheSizeGB": None, "taskId": None, @@ -145,6 +146,9 @@ SHELL_WRITE_MODE = None # alphabetical (case-insensitive) order. SHUFFLE = None +# If true, the launching of jobs is staggered in resmoke.py. +STAGGER_JOBS = None + # If set, then all mongod's started by resmoke.py and by the mongo shell will use the specified # storage engine. STORAGE_ENGINE = None |