api: Fixed CSR processing if autosign GET variable was not present

This commit is contained in:
Lauri Võsandi 2015-10-20 10:47:41 +03:00
parent 9a6e93f918
commit cf0317f7b3
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ class RequestListResource(CertificateAuthorityBase):
# TODO: check for revoked certificates and return HTTP 410 Gone
# Process automatic signing if the IP address is whitelisted and autosigning was requested
if req.get_param("autosign").lower() in ("yes", "1", "true"):
if req.get_param("autosign") in ("yes", "1", "true"):
for subnet in ca.autosign_subnets:
if subnet.overlaps(remote_addr):
try: