From 9bc8cbe0d61c521f7dc5e3e47abd657e9595b8e8 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 9 Apr 2026 23:02:54 -0300 Subject: [PATCH] fix(drive): skip gbo-* prefixed bots from monitoring, allow default to sync config.csv --- src/main_module/bootstrap.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main_module/bootstrap.rs b/src/main_module/bootstrap.rs index 1c5ca1bd..a4742f37 100644 --- a/src/main_module/bootstrap.rs +++ b/src/main_module/bootstrap.rs @@ -988,9 +988,9 @@ async fn start_drive_monitors( info!("Found {} active bots to monitor", bots_to_monitor.len()); for (bot_id, bot_name) in bots_to_monitor { - // Skip "gbo-default" only - it's a reserved system bot name - // Allow "default" bot to be monitored so its config.csv syncs properly - if bot_name == "gbo-default" { + // Skip bots with reserved system prefixes + // gbo-default is a reserved system bot name + if bot_name.starts_with("gbo-") { continue; }