]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Increase timeout for zone update in multisigner test 12373/head
authorNicki Křížek <nicki@isc.org>
Thu, 9 Jul 2026 08:16:40 +0000 (10:16 +0200)
committerNicki Křížek <nicki@isc.org>
Wed, 15 Jul 2026 14:05:10 +0000 (16:05 +0200)
In slower platforms in CI (e.g. freebsd14), the 10s timeout could be too
short causing the test to fail. Increase it to make the test stable even
during heavy CI load.

bin/tests/system/multisigner/tests_multisigner.py

index 5fa713c9aa84fa0f44f7e176147e3d5488d12819..8a61ae0916f840162f510626cd7db58925f8ad57 100644 (file)
@@ -150,7 +150,7 @@ def wait_for_serial(primary, server, zone):
     fqdn = f"{zone}."
     query = isctest.query.create(fqdn, dns.rdatatype.SOA)
 
-    isctest.run.retry_with_timeout(check_serial, timeout=10)
+    isctest.run.retry_with_timeout(check_serial, timeout=30)
 
 
 def check_add_zsk(server, zone, keys, expected, extra_keys, extra, primary=None):