From 3755f2f9fa4aac368ac73dc351a38f2af5e63c7e Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Fri, 6 Sep 2024 14:23:31 +0200 Subject: [PATCH] Disable tracing for test_Chain, it chokes GH --- regression-tests.recursor-dnssec/test_Chain.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/regression-tests.recursor-dnssec/test_Chain.py b/regression-tests.recursor-dnssec/test_Chain.py index 8cf08f6459..e962e1395a 100644 --- a/regression-tests.recursor-dnssec/test_Chain.py +++ b/regression-tests.recursor-dnssec/test_Chain.py @@ -10,6 +10,7 @@ class ChainTest(RecursorTest): _confdir = 'Chain' _config_template = """dnssec=validate + trace=no """ def testBasic(self): @@ -17,7 +18,7 @@ class ChainTest(RecursorTest): Tests the case of #14624. Sending many equal requests could lead to ServFail because of clashing waiter ids. """ - count = 500 + count = 200 name = '1.delay1.example.' exp = dns.rrset.from_text(name, 0, dns.rdataclass.IN, 'TXT', 'a') for i in range(count): @@ -26,8 +27,6 @@ class ChainTest(RecursorTest): self._sock.send(query.to_wire()) for i in range(count): - print(i) - self._sock.settimeout(5.0) data = self._sock.recv(4096) res = dns.message.from_wire(data) self.assertRcodeEqual(res, dns.rcode.NOERROR) -- 2.47.2