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: