From: Nicki Křížek Date: Thu, 9 Jul 2026 08:16:40 +0000 (+0200) Subject: Increase timeout for zone update in multisigner test X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=e0416c5d489796c547528593a1ac62e97c14622f;p=thirdparty%2Fbind9.git Increase timeout for zone update in multisigner test 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. --- diff --git a/bin/tests/system/multisigner/tests_multisigner.py b/bin/tests/system/multisigner/tests_multisigner.py index 5fa713c9aa8..8a61ae0916f 100644 --- a/bin/tests/system/multisigner/tests_multisigner.py +++ b/bin/tests/system/multisigner/tests_multisigner.py @@ -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):