Don't error for 3xx responses
This commit is contained in:
parent
2e165295b7
commit
a1595cec78
|
@ -145,7 +145,7 @@ class SimpleHttpClient(object):
|
|||
|
||||
body = yield preserve_context_over_fn(readBody, response)
|
||||
|
||||
if response.code / 100 != 2:
|
||||
if response.code / 100 >= 4:
|
||||
raise CodeMessageException(response.code, body)
|
||||
|
||||
defer.returnValue(json.loads(body))
|
||||
|
|
Loading…
Reference in New Issue