From 005aa31fd8ade32d83c05e567fe01527635151ed Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Tue, 10 Mar 2026 11:42:38 +0100 Subject: [PATCH] Bump xfer timeout to 30 seconds Enabling ans6 responses and xfr-and-reconfig zone reload sometimes takes more time on FreeBSD than the default timeout allows; bump it to 30 seconds. (cherry picked from commit 77a7430a5f122050d375517989b6d490c38ca0ed) --- bin/tests/system/xfer/tests_xfer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/xfer/tests_xfer.py b/bin/tests/system/xfer/tests_xfer.py index b57fc80626..78b90178ae 100644 --- a/bin/tests/system/xfer/tests_xfer.py +++ b/bin/tests/system/xfer/tests_xfer.py @@ -544,7 +544,7 @@ def test_reconfiguration_when_zone_transfer_is_in_the_middle_of_soa_query(ns6): isctest.log.info("Make ans6 receive queries and respond to them") msg = dns.message.make_query("enable.send-responses._control.", "TXT") - with ns6.watch_log_from_here() as watcher_transfer_started: + with ns6.watch_log_from_here(timeout=30) as watcher_transfer_started: get_response(msg, "10.53.0.9") isctest.log.info("Try to reload the zone from the primary") ns6.rndc("reload xfr-and-reconfig")