SERVER-93674 Increase timeout in merge_command_options.js (#26907)

GitOrigin-RevId: 6533ac73d791c87eda3a22faa342d30307edd558
This commit is contained in:
Frederic Vitzikam (fredvitz) 2024-09-18 10:33:43 +02:00 committed by MongoDB Bot
parent ed82593942
commit 731c1a1ee0
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ const st = new ShardingTest({
// Heartbeat will be dropped when the maxTimeAlwaysTimeOut failpoint is set, so increase the
// heartbeat interval and the time before an election will start to avoid a stepdown during
// slow execution of the test.
settings: {heartbeatIntervalMillis: 120 * 1000, electionTimeoutMillis: 120 * 1000}
settings: {heartbeatIntervalMillis: 600 * 1000, electionTimeoutMillis: 600 * 1000}
}
});