Commit daea5fb9 authored by Francesco Poldi's avatar Francesco Poldi

Increased timeout

parent acd6022a
...@@ -158,7 +158,7 @@ async def Request(url, connector=None, params=[], headers=[]): ...@@ -158,7 +158,7 @@ async def Request(url, connector=None, params=[], headers=[]):
async def Response(session, url, params=[]): async def Response(session, url, params=[]):
logme.debug(__name__+':Response') logme.debug(__name__+':Response')
with timeout(60): with timeout(100):
async with session.get(url, ssl=False, params=params, proxy=httpproxy) as response: async with session.get(url, ssl=False, params=params, proxy=httpproxy) as response:
return await response.text() 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