mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Adjust timeout for clients for slower machines
This commit is contained in:
parent
a8767e0a51
commit
58e8df3c0d
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ class GenericClient(object):
|
|||
return False
|
||||
try:
|
||||
self.response = self.session.__getattribute__(method)(self.url, params=params, data=data, files=files,
|
||||
timeout=20, verify=False)
|
||||
timeout=120, verify=False)
|
||||
except requests.exceptions.ConnectionError, e:
|
||||
logger.log(self.name + u': Unable to connect ' + ex(e), logger.ERROR)
|
||||
return False
|
||||
|
|
Loading…
Reference in a new issue