From: Matthijs Mekking Date: Fri, 21 Nov 2025 08:49:18 +0000 (+0100) Subject: Wait longer before keymgr is done X-Git-Tag: v9.21.16~38^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba211de91288ef56a4c44464307ffbc906b48fe3;p=thirdparty%2Fbind9.git 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. --- diff --git a/bin/tests/system/isctest/kasp.py b/bin/tests/system/isctest/kasp.py index 0fac77ff453..604a4f86693 100644 --- a/bin/tests/system/isctest/kasp.py +++ b/bin/tests/system/isctest/kasp.py @@ -1609,5 +1609,5 @@ def wait_keymgr_done(server: NamedInstance, zone: str, reconfig: bool = False) - messages.append("received control channel command 'reconfig'") messages.append("apply_configuration") 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)