diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-27 22:59:27 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-27 22:59:27 +0100 |
commit | b4ead2782937469f9aec399f52a99bf0190d5c58 (patch) | |
tree | 55a191c443ae748f84ce8af63cba78277a89e6b2 /module/network | |
parent | Spare code cosmetics (diff) | |
download | pyload-b4ead2782937469f9aec399f52a99bf0190d5c58.tar.xz |
Increase LOW_SPEED_TIME to try to avoid pycurl error 28
Diffstat (limited to 'module/network')
-rw-r--r-- | module/network/HTTPRequest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/HTTPRequest.py b/module/network/HTTPRequest.py index 4747d937f..d6fcae7d6 100644 --- a/module/network/HTTPRequest.py +++ b/module/network/HTTPRequest.py @@ -79,7 +79,7 @@ class HTTPRequest(): if hasattr(pycurl, "AUTOREFERER"): self.c.setopt(pycurl.AUTOREFERER, 1) self.c.setopt(pycurl.SSL_VERIFYPEER, 0) - self.c.setopt(pycurl.LOW_SPEED_TIME, 30) + self.c.setopt(pycurl.LOW_SPEED_TIME, 60) self.c.setopt(pycurl.LOW_SPEED_LIMIT, 5) #self.c.setopt(pycurl.VERBOSE, 1) |