demote warn line to info-level, as the log line in set_stopping() is also info!()

This should fix the faile regress tests that barked on allowed_errors
This commit is contained in:
Christian Schwarz
2023-05-26 18:22:41 +02:00
parent 72159ee686
commit 9a4789ec73

View File

@@ -292,7 +292,7 @@ pub async fn shutdown_all_tenants() {
tenants_to_freeze_and_flush.push(tenant);
}
Err((tenant, SetStoppingError::Broken)) => {
warn!("tenant is broken, so stopping failed, freeze_and_flush is likely going to make noise as well: {}", tenant.tenant_id);
info!("tenant is broken, so stopping failed, freeze_and_flush is likely going to make noise as well: {}", tenant.tenant_id);
tenants_to_freeze_and_flush.push(tenant);
}
},