From a12ae42b94c6587afd0a1568c80da812d271b306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?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. (cherry picked from commit 93a807948902eca1add65bc7bd57a445e1ab75f7) --- 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 5c9268a193..b6a0526469 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"), ),