def test_create_server_ssl_1(self):
CNT = 0 # number of clients that were successful
TOTAL_CNT = 25 # total number of clients that test will create
- TIMEOUT = 10.0 # timeout for this test
+ TIMEOUT = 60.0 # timeout for this test
A_DATA = b'A' * 1024 * 1024
B_DATA = b'B' * 1024 * 1024
async def start_server():
extras = {}
- extras = dict(ssl_handshake_timeout=10.0)
+ extras = dict(ssl_handshake_timeout=40.0)
srv = await asyncio.start_server(
handle_client,
async def client(addr):
extras = {}
- extras = dict(ssl_handshake_timeout=10.0)
+ extras = dict(ssl_handshake_timeout=40.0)
reader, writer = await asyncio.open_connection(
*addr,