From 53fe6c43438f3552c2bb45c915fdb4d5f2643df3 Mon Sep 17 00:00:00 2001 From: JIAKUNHAO Date: Thu, 24 Nov 2022 16:54:04 +0800 Subject: [PATCH] ws --- app/utils/websocket_tool.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/utils/websocket_tool.py b/app/utils/websocket_tool.py index c41a84e..98047de 100644 --- a/app/utils/websocket_tool.py +++ b/app/utils/websocket_tool.py @@ -61,6 +61,7 @@ class WebsocketUtil: def send_message_proj_json(self, message: Union[str, int, List, Dict], id: str): # 广播该项目的消息 active_connections = read(id=id) + print("===================", active_connections) for connection in active_connections: try: connection.send(json.dumps(message, cls=MyEncoder, indent=4), )