Skip to content

Commit bcea1fa

Browse files
authored
Fix too-low heartbeat threshold in test (#3647)
The threshold was the same as the heartbeat period, leading to races in CI where the manager would be expired before the heartbeat was received.
1 parent 410d2cb commit bcea1fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsl/tests/test_serialization/test_3495_deserialize_managerlost.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_manager_lost_system_failure(tmpd_cwd):
3232
cores_per_worker=1,
3333
worker_logdir_root=str(tmpd_cwd),
3434
heartbeat_period=1,
35-
heartbeat_threshold=1,
35+
heartbeat_threshold=3,
3636
)
3737
c = Config(executors=[hte], strategy='simple', strategy_period=0.1)
3838

0 commit comments

Comments
 (0)