Return body of response in HttpResponseException

pull/4/merge
Erik Johnston 10 years ago
parent 3737329d9b
commit 9f2573eea1
  1. 3
      synapse/http/matrixfederationclient.py

@ -169,8 +169,9 @@ class MatrixFederationHttpClient(object):
else:
# :'(
# Update transactions table?
body = yield readBody(response)
raise HttpResponseException(
response.code, response.phrase, response
response.code, response.phrase, body
)
defer.returnValue(response)

Loading…
Cancel
Save