Allow gbo-default bucket to be monitored
All checks were successful
BotServer CI/CD / build (push) Successful in 3m56s
All checks were successful
BotServer CI/CD / build (push) Successful in 3m56s
This commit is contained in:
parent
ed6ce514a8
commit
9ba689c30f
1 changed files with 1 additions and 4 deletions
|
|
@ -926,9 +926,6 @@ async fn start_drive_monitors(
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
let bot_name = name.strip_suffix(".gbai").unwrap_or(&name);
|
let bot_name = name.strip_suffix(".gbai").unwrap_or(&name);
|
||||||
if bot_name == "default" {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let exists = {
|
let exists = {
|
||||||
let pool_check = pool_clone.clone();
|
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());
|
info!("Found {} active bots to monitor", bots_to_monitor.len());
|
||||||
|
|
||||||
for (bot_id, bot_name) in bots_to_monitor {
|
for (bot_id, bot_name) in bots_to_monitor {
|
||||||
if bot_name == "default" {
|
if bot_name == "default" || bot_name == "gbo-default" {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue