From e0105355975b361da6d93ebb47261d7018ab893f Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Tue, 2 Jun 2026 14:53:25 +0000 Subject: [PATCH] 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 --- bin/tests/system/isctest/kasp.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/tests/system/isctest/kasp.py b/bin/tests/system/isctest/kasp.py index e6f7bad8f7..5987de2c77 100644 --- a/bin/tests/system/isctest/kasp.py +++ b/bin/tests/system/isctest/kasp.py @@ -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