Bump the next-key-event check timeout to 30s

5s was shorter than the inner watch_log timeout, so it got one try.

Assisted-by: Claude:claude-opus-4-8
This commit is contained in:
Michal Nowak 2026-06-02 14:53:25 +00:00
parent a5a0dedfbc
commit e010535597

View file

@ -1436,7 +1436,9 @@ def check_rollover_step(server, config, policy, step):
return next_key_event_equals(server, zone, nextev)
if nextev is not None:
isctest.run.retry_with_timeout(check_next_key_event, timeout=5)
# Larger than the inner watch_log timeout (10s) so slow logging of
# the next key event under load still gets more than one attempt.
isctest.run.retry_with_timeout(check_next_key_event, timeout=30)
return expected