Skip to content

Commit

Permalink
Merge pull request Netflix#1661 from gesquive/cfssl_error_msg
Browse files Browse the repository at this point in the history
cfssl plugin error message typo
  • Loading branch information
castrapel committed Sep 5, 2018
2 parents b3c4324 + 82e69db commit 0ab0caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lemur/plugins/lemur_cfssl/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def create_certificate(self, csr, issuer_options):
if response.status_code > 399:
metrics.send('cfssl_create_certificate_failure', 'counter', 1)
raise Exception(
"Error revoking cert. Please check your CFSSL API server")
"Error creating cert. Please check your CFSSL API server")
response_json = json.loads(response.content.decode('utf_8'))
cert = response_json['result']['certificate']
parsed_cert = parse_certificate(cert)
Expand Down

0 comments on commit 0ab0caa

Please sign in to comment.