X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=regression-tests.dnsdist%2Ftest_TLSSessionResumption.py;h=4f9dfd6194c3e1cf6a11f5892d1bda4ad59fb9c4;hb=b61cf2574a1c5b668375cf75e41ab64ce028dc01;hp=190a32af6dd23d61ae4e5ca88b9d5caf49dde350;hpb=7099c0fc6e65b7d9149effe89725a52190c66095;p=thirdparty%2Fpdns.git diff --git a/regression-tests.dnsdist/test_TLSSessionResumption.py b/regression-tests.dnsdist/test_TLSSessionResumption.py index 190a32af6d..4f9dfd6194 100644 --- a/regression-tests.dnsdist/test_TLSSessionResumption.py +++ b/regression-tests.dnsdist/test_TLSSessionResumption.py @@ -32,7 +32,7 @@ class DNSDistTLSSessionResumptionTest(DNSDistTest): try: process = subprocess.Popen(testcmd, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True) # we need to wait just a bit so that the Post-Handshake New Session Ticket has the time to arrive.. - time.sleep(0.1) + time.sleep(0.5) output = process.communicate(input=b'') except subprocess.CalledProcessError as exc: raise AssertionError('%s failed (%d): %s' % (testcmd, process.returncode, process.output))