We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916f011 commit ba23731Copy full SHA for ba23731
1 file changed
Lib/test/test_asyncio/test_ssl.py
@@ -349,7 +349,8 @@ async def client_sock(addr):
349
reader, writer = await asyncio.open_connection(
350
sock=sock,
351
ssl=client_sslctx,
352
- server_hostname='')
+ server_hostname='',
353
+ ssl_handshake_timeout=support.LONG_TIMEOUT)
354
355
writer.write(A_DATA)
356
self.assertEqual(await reader.readexactly(2), b'OK')
0 commit comments