]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Wait longer before keymgr is done
authorMatthijs Mekking <matthijs@isc.org>
Fri, 21 Nov 2025 08:49:18 +0000 (09:49 +0100)
committerMatthijs Mekking <matthijs@isc.org>
Fri, 21 Nov 2025 13:20:58 +0000 (14:20 +0100)
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.

bin/tests/system/isctest/kasp.py

index 0fac77ff45340fc41f72bcbba156160d7497395f..604a4f86693640bae5e0a2ea1535d1272a7e1891 100644 (file)
@@ -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)