File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ async def wait_closed(self, obj):
179
179
def test_create_server_ssl_1 (self ):
180
180
CNT = 0 # number of clients that were successful
181
181
TOTAL_CNT = 25 # total number of clients that test will create
182
- TIMEOUT = 10 .0 # timeout for this test
182
+ TIMEOUT = 60 .0 # timeout for this test
183
183
184
184
A_DATA = b'A' * 1024 * 1024
185
185
B_DATA = b'B' * 1024 * 1024
@@ -238,7 +238,7 @@ def prog(sock):
238
238
239
239
async def start_server ():
240
240
extras = {}
241
- extras = dict (ssl_handshake_timeout = 10 .0 )
241
+ extras = dict (ssl_handshake_timeout = 40 .0 )
242
242
243
243
srv = await asyncio .start_server (
244
244
handle_client ,
@@ -303,7 +303,7 @@ def server(sock):
303
303
304
304
async def client (addr ):
305
305
extras = {}
306
- extras = dict (ssl_handshake_timeout = 10 .0 )
306
+ extras = dict (ssl_handshake_timeout = 40 .0 )
307
307
308
308
reader , writer = await asyncio .open_connection (
309
309
* addr ,
You can’t perform that action at this time.
0 commit comments