change to get call in ws_client

This commit is contained in:
Timothy Pogue 2022-11-17 10:22:55 -07:00
parent 1380ddd066
commit a993cb512d
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ async def _main(args):
producer['host'],
producer['port'],
producer['ws_token'],
'wss' if producer['secure'] else 'ws',
'wss' if producer.get('secure', False) else 'ws',
producer['name'],
sleep_time=sleep_time,
ping_timeout=ping_timeout,