From 93a807948902eca1add65bc7bd57a445e1ab75f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=A0t=C4=9Bp=C3=A1n=20Bal=C3=A1=C5=BEik?= Date: Mon, 19 Jan 2026 21:49:36 +0100 Subject: [PATCH] Fix FallbackTooManyRecordsAxfrHandler to follow convention All the other subclasses AxfrHandler send three messages. This oversight was inherited from the original Perl implementation of the server and was not fixed in 46ecbbe where it was rewritten. This allows refactoring and sharing of the superclass. --- bin/tests/system/ixfr/ans2/ans.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/ixfr/ans2/ans.py b/bin/tests/system/ixfr/ans2/ans.py index 5c9268a193f..b6a05264690 100644 --- a/bin/tests/system/ixfr/ans2/ans.py +++ b/bin/tests/system/ixfr/ans2/ans.py @@ -196,8 +196,8 @@ class TooManyRecordsIxfrHandler(IxfrHandler): class FallbackTooManyRecordsAxfrHandler(AxfrHandler): answers = ( + (soa(3),), ( - soa(3), ns(), txt("fallback AXFR on too many records"), ), -- 2.47.3