From be9823c5ce5e3119ac786cfed1fec0ea21ee1cf6 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sun, 7 Sep 2025 17:14:29 -0500 Subject: [PATCH] Added debug logs for active clients --- apps/proxy/vod_proxy/multi_worker_connection_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/proxy/vod_proxy/multi_worker_connection_manager.py b/apps/proxy/vod_proxy/multi_worker_connection_manager.py index d40ed152..c31dfdd5 100644 --- a/apps/proxy/vod_proxy/multi_worker_connection_manager.py +++ b/apps/proxy/vod_proxy/multi_worker_connection_manager.py @@ -699,6 +699,7 @@ class MultiWorkerVODConnectionManager: # Update activity every 100 chunks in consolidated connection state if chunk_count % 100 == 0: # Update the connection state + logger.debug(f"Client: [{client_id}] Worker: {self.worker_id} sent {chunk_count} chunks for VOD: {content_name}") if redis_connection._acquire_lock(): try: state = redis_connection._get_connection_state()