mirror of https://github.com/mongodb/mongo
SERVER-57349 Adjust timeout for replica_sets_jscore_passthrough on DEBUG and Windows variants
This commit is contained in:
parent
73143230ef
commit
fbe9e6104e
|
|
@ -29,12 +29,25 @@ SPECIFIC_TASK_OVERRIDES = {
|
|||
"replica_sets_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
"replica_sets_update_v1_oplog_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
},
|
||||
"enterprise-windows-inmem": {
|
||||
"replica_sets_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
},
|
||||
"enterprise-windows": {"replica_sets_jscore_passthrough": timedelta(hours=2, minutes=30), },
|
||||
"windows-debug-suggested": {
|
||||
"replica_sets_initsync_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
"replica_sets_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
"replica_sets_update_v1_oplog_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
},
|
||||
"windows": {"replica_sets": timedelta(hours=3)},
|
||||
"windows": {
|
||||
"replica_sets": timedelta(hours=3),
|
||||
"replica_sets_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
},
|
||||
"ubuntu1804-debug-suggested": {
|
||||
"replica_sets_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
},
|
||||
"enterprise-rhel-80-64-bit-coverage": {
|
||||
"replica_sets_jscore_passthrough": timedelta(hours=2, minutes=30),
|
||||
},
|
||||
|
||||
# unittests outliers
|
||||
# repeated execution runs a suite 10 times
|
||||
|
|
|
|||
Loading…
Reference in New Issue