fix: [sync client] fix websockets client connect for python >= 3.8

pull/586/head
Terrtia 2021-11-30 15:57:28 +01:00
parent e075794fd0
commit d4cf2a7cf9
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 2 additions and 3 deletions

View File

@ -54,13 +54,12 @@ async def pull(websocket, ail_uuid):
sys.stdout.write(obj)
async def push(websocket, ail_uuid):
## DEBUG:
# ## DEBUG:
# try:
# while True:
# await websocket.send('test')
# await asyncio.sleep(10)
# except websockets.exceptions.ConnectionClosedError as err:
# print(err.code)
# raise err
try:
@ -110,7 +109,7 @@ async def ail_to_ail_client(ail_uuid, sync_mode, api, ail_key=None, client_id=No
client_id = ail_2_ail.create_sync_client_cache(ail_uuid, sync_mode)
try:
async with websockets.client.connect(
async with websockets.connect(
uri,
ssl=ssl_context,
#open_timeout=10, websockers 10.0 /!\ python>=3.7