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 09:16:57 -07:00 committed by GitHub
parent b682687449
commit 31599bad83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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())