Skip to content

Commit

Permalink
Disable tracing for test_Chain, it chokes GH
Browse files Browse the repository at this point in the history
  • Loading branch information
omoerbeek committed Sep 6, 2024
1 parent 44b1de9 commit 3755f2f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions regression-tests.recursor-dnssec/test_Chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ class ChainTest(RecursorTest):
_confdir = 'Chain'

_config_template = """dnssec=validate
trace=no
"""

def testBasic(self):
"""
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):
Expand All @@ -26,8 +27,6 @@ def testBasic(self):
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)
Expand Down

0 comments on commit 3755f2f

Please sign in to comment.