From bf6084db615afa28c5316c81ea146f869fd32d30 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Tue, 20 Dec 2016 14:41:34 -0800 Subject: [PATCH] With mixed staging/prod lineages, it might not be correct to stop OCSPing - One lineage might fail, and a later one succeed --- certbot/ocsp.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/certbot/ocsp.py b/certbot/ocsp.py index c04afcc82..56074fa45 100644 --- a/certbot/ocsp.py +++ b/certbot/ocsp.py @@ -86,10 +86,8 @@ class RevocationChecker(object): try: output, err = util.run_script(cmd, log=logging.debug) except errors.SubprocessError, e: - logger.info("We're offline, or OCSP querying is broken. " - "Assuming nothing is revoked...") + logger.info("We're offline, or OCSP querying is broken. ") logger.debug("Command was:\n%s\nError was:\n%s", " ".join(cmd), e) - self.broken = True return False return _translate_ocsp_query(cert_path, output, err)