Merge pull request #327 from spiritualized/master
This commit is contained in:
commit
2aaa594388
|
@ -932,7 +932,15 @@ class _Request:
|
||||||
raise NetworkError(self.network, e)
|
raise NetworkError(self.network, e)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
response_text = _unicode(conn.getresponse().read())
|
response = conn.getresponse()
|
||||||
|
if response.status in [500, 502, 503, 504]:
|
||||||
|
raise WSError(
|
||||||
|
self.network,
|
||||||
|
response.status,
|
||||||
|
"Connection to the API failed with HTTP code "
|
||||||
|
+ str(response.status),
|
||||||
|
)
|
||||||
|
response_text = _unicode(response.read())
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise MalformedResponseError(self.network, e)
|
raise MalformedResponseError(self.network, e)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue