Catch OSError and EOFError while reading from gzip stream
This commit is contained in:
parent
9848481d06
commit
c16ffd4ae7
|
@ -1041,7 +1041,10 @@ class Speedtest(object):
|
|||
stream = get_response_stream(uh)
|
||||
|
||||
while 1:
|
||||
try:
|
||||
configxml.append(stream.read(1024))
|
||||
except (OSError, EOFError):
|
||||
raise ConfigRetrievalError(get_exception())
|
||||
if len(configxml[-1]) == 0:
|
||||
break
|
||||
stream.close()
|
||||
|
@ -1166,7 +1169,10 @@ class Speedtest(object):
|
|||
|
||||
serversxml = []
|
||||
while 1:
|
||||
try:
|
||||
serversxml.append(stream.read(1024))
|
||||
except (OSError, EOFError):
|
||||
raise ServersRetrievalError(get_exception())
|
||||
if len(serversxml[-1]) == 0:
|
||||
break
|
||||
|
||||
|
|
Loading…
Reference in New Issue