1
0
mirror of https://github.com/laurivosandi/certidude synced 2025-10-31 01:19:11 +00:00

Add tests for non-existant certificate

This commit is contained in:
2017-04-25 13:58:21 +03:00
parent 108b6ebfaf
commit 4eb3c4146f
2 changed files with 7 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ class SignedCertificateDetailResource(object):
except EnvironmentError:
logger.warning(u"Failed to serve non-existant certificate %s to %s",
cn, req.context.get("remote_addr"))
raise falcon.HTTPNotFound("No certificate CN=%s found" % cn)
raise falcon.HTTPNotFound()
else:
if preferred_type == "application/x-pem-file":
resp.set_header("Content-Type", "application/x-pem-file")