From b4ead2782937469f9aec399f52a99bf0190d5c58 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 27 Oct 2014 22:59:27 +0100 Subject: Increase LOW_SPEED_TIME to try to avoid pycurl error 28 --- module/network/HTTPRequest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module') 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) -- cgit v1.2.3