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.
pull/49348/head
Felix Fontein 6 years ago committed by René Moser
parent 829fc0feda
commit b842b1b97e

@ -0,0 +1,2 @@
bugfixes:
- "ACME modules: improve error messages in some cases (include error returned by server)."

@ -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…
Cancel
Save