diff --git a/app/utils/websocket_tool.py b/app/utils/websocket_tool.py index b8f0c04..c41a84e 100644 --- a/app/utils/websocket_tool.py +++ b/app/utils/websocket_tool.py @@ -60,8 +60,8 @@ class WebsocketUtil: def send_message_proj_json(self, message: Union[str, int, List, Dict], id: str): # 广播该项目的消息 - active_connections_dist = read(id=id) - for connection in active_connections_dist[id]: + active_connections = read(id=id) + for connection in active_connections: try: connection.send(json.dumps(message, cls=MyEncoder, indent=4), ) except Exception as e: