From 479b55afc0d730339f18562598103c7face6ea6b Mon Sep 17 00:00:00 2001 From: JIAKUNHAO Date: Thu, 24 Nov 2022 16:59:18 +0800 Subject: [PATCH] ws --- app/utils/websocket_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/websocket_tool.py b/app/utils/websocket_tool.py index 98047de..9755f77 100644 --- a/app/utils/websocket_tool.py +++ b/app/utils/websocket_tool.py @@ -61,7 +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) + print("===================", len(active_connections), active_connections[0]) for connection in active_connections: try: connection.send(json.dumps(message, cls=MyEncoder, indent=4), )