From: Michal Nowak Date: Mon, 1 Jun 2026 12:33:59 +0000 (+0000) Subject: Bump edns-expire refresh timeout to 30 seconds X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=4087efac0f513bc6ce1e16e8787b3f6fb8a8938f;p=thirdparty%2Fbind9.git Bump edns-expire refresh timeout to 30 seconds Rarely, RNDC fails to refresh the zone on FreeBSD in the default 10 seconds, causing test_edns_expire_refresh to fail with a TimeoutExpired on the "rndc refresh edns-expire." call. Give it more time, the same way the reconfigure timeout was bumped in test_reconfiguration_when_zone_transfer_is_in_the_middle_of_soa_query. Assisted-by: Claude:claude-opus-4-8 (cherry picked from commit c93d68a36b5cd42370c01c501986cd0d2568ade4) --- diff --git a/bin/tests/system/xfer/tests_xfer.py b/bin/tests/system/xfer/tests_xfer.py index 2adb5ea2b9..cfeffc52d0 100644 --- a/bin/tests/system/xfer/tests_xfer.py +++ b/bin/tests/system/xfer/tests_xfer.py @@ -428,7 +428,7 @@ def test_edns_expire_from_secondary(ns7): def test_edns_expire_refresh(ns7): time.sleep(1) with ns7.watch_log_from_here() as watcher: - ns7.rndc("refresh edns-expire.") + ns7.rndc("refresh edns-expire.", timeout=30) isctest.log.info("make sure the EDNS EXPIRE of 1814400 decreases a slightly") pattern = Re("zone edns-expire/IN: got EDNS EXPIRE of 1814[0-3][0-9][0-9]") watcher.wait_for_line(pattern)