From fc265ad4f13714661769f6b1c3e5e68b25e6b190 Mon Sep 17 00:00:00 2001 From: JIAKUNHAO Date: Thu, 24 Nov 2022 17:47:45 +0800 Subject: [PATCH] ws --- app/utils/websocket_tool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/utils/websocket_tool.py b/app/utils/websocket_tool.py index 64c9b39..c6cfc72 100644 --- a/app/utils/websocket_tool.py +++ b/app/utils/websocket_tool.py @@ -67,8 +67,8 @@ class WebsocketUtil: # 广播该项目的消息 active_connections = read(id=id) print("===================", type(active_connections.id), active_connections.id) - print("===================", type(active_connections.ws), active_connections.ws[0]) - for connection in active_connections.ws: + print("===================", type(active_connections.getWs()), active_connections.getWs()[0]) + for connection in active_connections.getWs(): try: connection.send(json.dumps(message, cls=MyEncoder, indent=4), ) except Exception as e: