From a993cb512de6422d0c186e27c214502a5356c5eb Mon Sep 17 00:00:00 2001 From: Timothy Pogue Date: Thu, 17 Nov 2022 10:22:55 -0700 Subject: [PATCH] change to get call in ws_client --- scripts/ws_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ws_client.py b/scripts/ws_client.py index 70dbead14..5d27f512e 100644 --- a/scripts/ws_client.py +++ b/scripts/ws_client.py @@ -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,