Mako: lower tenant id fetch error to debug

With MVC mode, it always fails at least once for each tenant and gets spammy
This commit is contained in:
Junhyun Shim 2023-02-07 18:44:43 +01:00
parent ff61e2990b
commit c4703b5940
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ TenantIdsResponse AdminServer::fetchTenantIds(fdb::Database db, int id_begin, in
}
if (auto err = future.error()) {
if (err.retryable()) {
logr.info("retryable error while getting tenant ID of tenant {}: {}", idx, err.what());
logr.debug("retryable error while getting tenant ID of tenant {}: {}", idx, err.what());
future = tenant.getId();
has_retries = true;
} else {