From 9ba689c30fa437d736537ccf9e97b1793f8b47af Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 9 Apr 2026 21:32:15 -0300 Subject: [PATCH] Allow gbo-default bucket to be monitored --- src/main_module/bootstrap.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main_module/bootstrap.rs b/src/main_module/bootstrap.rs index 7f8c8cfc..bacc3729 100644 --- a/src/main_module/bootstrap.rs +++ b/src/main_module/bootstrap.rs @@ -926,9 +926,6 @@ async fn start_drive_monitors( continue; } let bot_name = name.strip_suffix(".gbai").unwrap_or(&name); - if bot_name == "default" { - continue; - } let exists = { let pool_check = pool_clone.clone(); @@ -986,7 +983,7 @@ 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" { + if bot_name == "default" || bot_name == "gbo-default" { continue; }