Don't try/except async http exceptions

This commit is contained in:
jesopo 2019-07-08 13:51:02 +01:00
parent ee0ec0eca1
commit 81c7af8ab5

View file

@ -121,11 +121,7 @@ def request_many(urls: typing.List[str]) -> typing.Dict[str, Response]:
request = tornado.httpclient.HTTPRequest(url, method="GET",
connect_timeout=2, request_timeout=2)
response = None
try:
response = await client.fetch(request)
except:
return
response = await client.fetch(request)
headers = utils.CaseInsensitiveDict(dict(response.headers))
data = response.body.decode("utf8")