mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
ACME: improve error handling (#49266)
* Improve error handling: when parse_json_result is False, still return the error message. * Remove content body from info dict. * Add changelog.
This commit is contained in:
parent
829fc0feda
commit
b842b1b97e
2 changed files with 6 additions and 2 deletions
|
@ -564,7 +564,7 @@ class ACMEAccount(object):
|
|||
try:
|
||||
content = resp.read()
|
||||
except AttributeError:
|
||||
content = info.get('body')
|
||||
content = info.pop('body')
|
||||
|
||||
if content or not parse_json_result:
|
||||
if (parse_json_result and info['content-type'].startswith('application/json')) or 400 <= info['status'] < 600:
|
||||
|
@ -579,6 +579,8 @@ class ACMEAccount(object):
|
|||
continue
|
||||
if parse_json_result:
|
||||
result = decoded_result
|
||||
else:
|
||||
result = content
|
||||
except ValueError:
|
||||
raise ModuleFailException("Failed to parse the ACME response: {0} {1}".format(url, content))
|
||||
else:
|
||||
|
@ -608,7 +610,7 @@ class ACMEAccount(object):
|
|||
try:
|
||||
content = resp.read()
|
||||
except AttributeError:
|
||||
content = info.get('body')
|
||||
content = info.pop('body')
|
||||
|
||||
# Process result
|
||||
if parse_json_result:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue