]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Bump edns-expire refresh timeout to 30 seconds 12152/head
authorMichal Nowak <mnowak@isc.org>
Mon, 1 Jun 2026 12:33:59 +0000 (12:33 +0000)
committerMichal Nowak <mnowak@isc.org>
Mon, 1 Jun 2026 12:33:59 +0000 (12:33 +0000)
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
bin/tests/system/xfer/tests_xfer.py

index 077ffaa333fca1daabf28ba2ebf7eac455877c74..dd95cff74a620a5cb4c917e6339f5731f17d6e2a 100644 (file)
@@ -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)