SERVER-123449 testMaxTimeProcessingChunksMSParameter fails on config server step down (#51192)

GitOrigin-RevId: b1279a14283b97c37b4830e956f8aae08cfe30a3
This commit is contained in:
rehangillswe 2026-04-08 10:21:41 -05:00 committed by MongoDB Bot
parent 2b0757a642
commit a6340b2030
2 changed files with 12 additions and 0 deletions

View File

@ -15,6 +15,12 @@ filters:
- "*chunk_migration*":
approvers:
- 10gen/server-cluster-scalability
- "merge_all_chunks_on_shard.js":
approvers:
- 10gen/server-cluster-scalability
- "merge_chunk*":
approvers:
- 10gen/server-cluster-scalability
- "*migration_coordinator*":
approvers:
- 10gen/server-cluster-scalability

View File

@ -455,6 +455,12 @@ function testConfigurableAutoMergerIntervalSecs(st, testDB) {
}
function testMaxTimeProcessingChunksMSParameter(st, testDB) {
// Skip this test if running in a suite with stepdowns
if (TestData.runningWithConfigStepdowns) {
jsTest.log(`Skipping testMaxTimeProcessingChunksMSParameter`);
return;
}
jsTestLog("Testing the `maxTimeProcessingChunksMS` parameter.");
const configDB = st.s.getDB("config");