From 844f673b0e371eebb7e17308b87171993f1c61f3 Mon Sep 17 00:00:00 2001 From: JIAKUNHAO Date: Thu, 24 Nov 2022 17:02:47 +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 9755f77..010ae38 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("===================", len(active_connections), active_connections[0]) + print("===================", type(active_connections), active_connections[0]) for connection in active_connections: try: connection.send(json.dumps(message, cls=MyEncoder, indent=4), )