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:
Peter Eckersley 2016-12-20 14:41:34 -08:00
parent 15ed372df6
commit bf6084db61

View file

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