diff --git a/app.py b/app.py index 3531c15..0eeaead 100755 --- a/app.py +++ b/app.py @@ -427,13 +427,12 @@ def query_recent_connections(): ] if connections != last_connections: - socketio.emit('recent_connections', connections, broadcast=True) + socketio.emit('recent_connections', connections) last_connections = connections.copy() socketio.sleep(1) finally: background_thread_running = False - print("No clients connected; stopping query thread.") @socketio.on('connect')