Commit 91d66781 authored by Francesco Poldi's avatar Francesco Poldi

Rised timeout value for get.Response #490

parent 1316a8ef
......@@ -158,7 +158,7 @@ async def Request(url, connector=None, params=[], headers=[]):
async def Response(session, url, params=[]):
logme.debug(__name__+':Response')
with timeout(30):
with timeout(60):
async with session.get(url, ssl=False, params=params, proxy=httpproxy) as response:
return await response.text()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment