mirror of
https://github.com/sivel/speedtest-cli.git
synced 2024-11-21 01:13:24 +08:00
Catch OSError and EOFError while reading from gzip stream
This commit is contained in:
parent
9848481d06
commit
c16ffd4ae7
10
speedtest.py
10
speedtest.py
@ -1041,7 +1041,10 @@ class Speedtest(object):
|
||||
stream = get_response_stream(uh)
|
||||
|
||||
while 1:
|
||||
configxml.append(stream.read(1024))
|
||||
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:
|
||||
serversxml.append(stream.read(1024))
|
||||
try:
|
||||
serversxml.append(stream.read(1024))
|
||||
except (OSError, EOFError):
|
||||
raise ServersRetrievalError(get_exception())
|
||||
if len(serversxml[-1]) == 0:
|
||||
break
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user