mirror of
https://github.com/python/cpython.git
synced 2025-11-03 11:23:31 +00:00
Fix asyncio flaky tests (#7023)
This commit is contained in:
parent
a84d0b361a
commit
e253752191
1 changed files with 3 additions and 2 deletions
|
|
@ -1855,9 +1855,10 @@ class BaseLoopSockSendfileTests(test_utils.TestCase):
|
||||||
|
|
||||||
for _ in range(10):
|
for _ in range(10):
|
||||||
try:
|
try:
|
||||||
self.run_loop(self.loop.sock_connect(sock, (support.HOST, port)))
|
self.run_loop(self.loop.sock_connect(sock,
|
||||||
|
(support.HOST, port)))
|
||||||
except OSError:
|
except OSError:
|
||||||
time.sleep(0.5)
|
self.run_loop(asyncio.sleep(0.5))
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue