From d1cd589f3a05f895a29aa28131dc2377f57bcfa2 Mon Sep 17 00:00:00 2001 From: Matthijs Mekking Date: Fri, 21 Nov 2025 09:49:18 +0100 Subject: [PATCH] Wait longer before keymgr is done To check if the key managing for a zone is done, we check a log message. On some machines, with many zones this may take some time. Increate the timeout to a minute. Note that most zones will continue their test case much faster, but with many zones there may be some straggling. (cherry picked from commit ba211de91288ef56a4c44464307ffbc906b48fe3) --- bin/tests/system/isctest/kasp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/isctest/kasp.py b/bin/tests/system/isctest/kasp.py index 5e147241f3..3728e1e3d2 100644 --- a/bin/tests/system/isctest/kasp.py +++ b/bin/tests/system/isctest/kasp.py @@ -1600,5 +1600,5 @@ def wait_keymgr_done(server: NamedInstance, zone: str, reconfig: bool = False) - if reconfig: messages.append("received control channel command 'reconfig'") messages.append(f"keymgr: {zone} done") - with server.watch_log_from_start() as watcher: + with server.watch_log_from_start(timeout=60) as watcher: watcher.wait_for_sequence(messages)