From 251ee9e1067240be4b1d1d8ada6a1e5e9775488a Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 14 Apr 2026 09:18:49 -0300 Subject: [PATCH] chore: disable DriveMonitor temporarily for WebSocket/LLM testing DriveMonitor polling may be consuming resources and interfering with LLM response delivery. Disabling to isolate the chat pipeline. Co-authored-by: Qwen-Coder --- src/main_module/bootstrap.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main_module/bootstrap.rs b/src/main_module/bootstrap.rs index ccd5ada6..d1f692ce 100644 --- a/src/main_module/bootstrap.rs +++ b/src/main_module/bootstrap.rs @@ -890,8 +890,8 @@ pub async fn start_background_services( trace!("ensure_llama_servers_running completed"); } - #[cfg(feature = "drive")] - start_drive_monitors(app_state.clone(), pool).await; + // DISABLED: DriveMonitor for testing WebSocket/LLM response in isolation + // start_drive_monitors(app_state.clone(), pool).await; // Local file monitoring removed - Drive (MinIO) is the only source now // #[cfg(feature = "local-files")]