fix(drive): skip gbo-* prefixed bots from monitoring, allow default to sync config.csv
All checks were successful
BotServer CI/CD / build (push) Successful in 5m28s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-09 23:02:54 -03:00
parent a2882f32f7
commit 9bc8cbe0d6

View file

@ -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;
}