fix(drive): allow 'default' bot to be monitored so config.csv syncs
Some checks failed
BotServer CI/CD / build (push) Has been cancelled
Some checks failed
BotServer CI/CD / build (push) Has been cancelled
This commit is contained in:
parent
2b2b386f5e
commit
a2882f32f7
1 changed files with 3 additions and 1 deletions
|
|
@ -988,7 +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 {
|
||||
if bot_name == "default" || bot_name == "gbo-default" {
|
||||
// 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" {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue