diff options
author | Judah Schvimer <judah@mongodb.com> | 2020-08-26 16:11:16 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-08-27 19:36:07 +0000 |
commit | c932e02133220269f37122499f7379f1758b7ad4 (patch) | |
tree | 12e8d05f972b49f41e415d33be8ca8eb8d86523d /buildscripts | |
parent | aa541f99b7c75526a45d51ad710b271698d6d60e (diff) | |
download | mongo-c932e02133220269f37122499f7379f1758b7ad4.tar.gz |
SERVER-49779 Create a log component for tenant migrations
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/resmokelib/core/programs.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/buildscripts/resmokelib/core/programs.py b/buildscripts/resmokelib/core/programs.py index ddec905ee20..0cc8aafa3bc 100644 --- a/buildscripts/resmokelib/core/programs.py +++ b/buildscripts/resmokelib/core/programs.py @@ -24,16 +24,17 @@ from buildscripts.resmokelib.multiversionconstants import LAST_LTS_MONGOS_BINARY # The default verbosity setting for any tests that are not started with an Evergreen task id. This # will apply to any tests run locally. DEFAULT_MONGOD_LOG_COMPONENT_VERBOSITY = { - "replication": {"rollback": 2}, "sharding": {"migration": 2}, "transaction": 4 + "replication": {"rollback": 2}, "sharding": {"migration": 2}, "transaction": 4, + "tenantMigration": 4 } DEFAULT_LAST_LTS_MONGOD_LOG_COMPONENT_VERBOSITY = {"replication": {"rollback": 2}, "transaction": 4} -# The default verbosity setting for any mongod processes running in Evergreen i.e. started with an Evergreen -# task id. +# The default verbosity setting for any mongod processes running in Evergreen i.e. started with an +# Evergreen task id. DEFAULT_EVERGREEN_MONGOD_LOG_COMPONENT_VERBOSITY = { "replication": {"election": 4, "heartbeats": 2, "initialSync": 2, "rollback": 2}, - "sharding": {"migration": 2}, "storage": {"recovery": 2}, "transaction": 4 + "sharding": {"migration": 2}, "storage": {"recovery": 2}, "transaction": 4, "tenantMigration": 4 } # The default verbosity setting for any last-lts mongod processes running in Evergreen i.e. started |