From 6c1447bb990cdbf751c00fca63fb632fe8d8a434 Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Thu, 22 Apr 2021 15:13:05 -0700 Subject: [PATCH] Change ocsp check error to warning since it's non-fatal --- certbot/certbot/_internal/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/certbot/_internal/storage.py b/certbot/certbot/_internal/storage.py index c9f6f61fa..c6384d491 100644 --- a/certbot/certbot/_internal/storage.py +++ b/certbot/certbot/_internal/storage.py @@ -911,7 +911,7 @@ class RenewableCert(interfaces.RenewableCert): return ocsp.RevocationChecker().ocsp_revoked_by_paths(cert_path, chain_path) except Exception as e: # pylint: disable=broad-except - logger.error( + logger.warning( "An error occurred determining the OCSP status of %s.", cert_path) logger.debug(str(e))