Reduce logging level of ARI failure to info (#10335)

This is a feature people didn't have before and won't miss if it fails.
We can always raise it later, but let's reduce it for now to stop people
worrying about the big red warning.
This commit is contained in:
ohemorange
2025-06-12 16:16:57 +00:00
committed by GitHub
parent b682687449
commit 31599bad83
+1 -1
View File
@@ -360,7 +360,7 @@ class ClientV2:
try:
resp = self.net.get(ari_url, content_type='application/json')
except (requests.exceptions.RequestException, messages.Error) as error:
logger.warning("failed to fetch renewal_info URL (%s): %s", ari_url, error)
logger.info("failed to fetch renewal_info URL (%s): %s", ari_url, error)
return None, now + default_retry_after
renewal_info: messages.RenewalInfo = messages.RenewalInfo.from_json(resp.json())