mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 19:02:52 +02:00
With mixed staging/prod lineages, it might not be correct to stop OCSPing
- One lineage might fail, and a later one succeed
This commit is contained in:
+1
-3
@@ -86,10 +86,8 @@ class RevocationChecker(object):
|
|||||||
try:
|
try:
|
||||||
output, err = util.run_script(cmd, log=logging.debug)
|
output, err = util.run_script(cmd, log=logging.debug)
|
||||||
except errors.SubprocessError, e:
|
except errors.SubprocessError, e:
|
||||||
logger.info("We're offline, or OCSP querying is broken. "
|
logger.info("We're offline, or OCSP querying is broken. ")
|
||||||
"Assuming nothing is revoked...")
|
|
||||||
logger.debug("Command was:\n%s\nError was:\n%s", " ".join(cmd), e)
|
logger.debug("Command was:\n%s\nError was:\n%s", " ".join(cmd), e)
|
||||||
self.broken = True
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
return _translate_ocsp_query(cert_path, output, err)
|
return _translate_ocsp_query(cert_path, output, err)
|
||||||
|
|||||||
Reference in New Issue
Block a user