diff options
| author | Kruti Shah <kruti.shah@mongodb.com> | 2023-11-07 20:17:20 +0000 |
|---|---|---|
| committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2023-11-08 21:08:14 +0000 |
| commit | 7c100b20252ab661f70bc409ab58d0c7dc5263d2 (patch) | |
| tree | 63874c9f7859e4a1d74440315dcf5ea3cf244a43 | |
| parent | 9fe1ad3febe7ed0eb38fb5d7406bec02deb37496 (diff) | |
SERVER-82799 Increase reshardingCriticalSectionTimeoutMillis for resharding_update_tag_zones.jsr7.1.1-rc0r7.1.1
(cherry picked from commit d6548865b54d657644ab49fd03ca66f6b6efa893)
| -rw-r--r-- | jstests/sharding/resharding_update_tag_zones.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/jstests/sharding/resharding_update_tag_zones.js b/jstests/sharding/resharding_update_tag_zones.js index 90a8ae9c60f..03c6b318511 100644 --- a/jstests/sharding/resharding_update_tag_zones.js +++ b/jstests/sharding/resharding_update_tag_zones.js @@ -2,7 +2,12 @@ * Testing that config.tags are correctly updated after resharding hashed shard key with zones. */ -const st = new ShardingTest({shard: 2}); +const st = new ShardingTest({ + shard: 2, + configOptions: + {setParameter: + {'reshardingCriticalSectionTimeoutMillis': 24 * 60 * 60 * 1000 /* 1 day */}} +}); const dbName = "testDb"; const collName = "testColl"; const ns = dbName + "." + collName; |
