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.
This commit is contained in:
Štěpán Balážik 2026-01-19 21:49:36 +01:00
parent 5f0b2f255f
commit 93a8079489

View file

@ -196,8 +196,8 @@ class TooManyRecordsIxfrHandler(IxfrHandler):
class FallbackTooManyRecordsAxfrHandler(AxfrHandler):
answers = (
(soa(3),),
(
soa(3),
ns(),
txt("fallback AXFR on too many records"),
),