summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTommaso Tocci <tommaso.tocci@mongodb.com>2022-03-15 13:34:43 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-03-15 14:23:16 +0000
commit92906f06daca886395569f8e656493936091e8a2 (patch)
treee1b8a665ccf149e001b6dc5a83846f9a06aec063
parent811dc428a93105d0aa9091ca20e4dfb120e4e57d (diff)
downloadmongo-92906f06daca886395569f8e656493936091e8a2.tar.gz
SERVER-64501 Reduce quiesce mode time for tenant migration fixture
-rw-r--r--buildscripts/resmokelib/testing/fixtures/standalone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/resmokelib/testing/fixtures/standalone.py b/buildscripts/resmokelib/testing/fixtures/standalone.py
index 111fbce6990..b6375141305 100644
--- a/buildscripts/resmokelib/testing/fixtures/standalone.py
+++ b/buildscripts/resmokelib/testing/fixtures/standalone.py
@@ -279,7 +279,7 @@ class MongodLauncher(object):
# The default time for stepdown and quiesce mode in response to SIGTERM is 15 seconds. Reduce
# this to 100ms for faster shutdown. On branches 4.4 and earlier, there is no quiesce mode, but
# the default time for stepdown is 10 seconds.
- if ("replSet" in mongod_options
+ if (("replSet" in mongod_options or "serverless" in mongod_options)
and "shutdownTimeoutMillisForSignaledShutdown" not in suite_set_parameters):
suite_set_parameters["shutdownTimeoutMillisForSignaledShutdown"] = 100