summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cnucnu/helper.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cnucnu/helper.py b/cnucnu/helper.py
index cae8df1..d148e5a 100644
--- a/cnucnu/helper.py
+++ b/cnucnu/helper.py
@@ -106,6 +106,8 @@ def get_html(url, callback=None, errback=None):
c.setopt(pycurl.FOLLOWLOCATION, 1)
c.setopt(pycurl.MAXREDIRS, 10)
c.setopt(pycurl.USERAGENT, "Fedora Upstream Release Monitoring (https://fedoraproject.org/wiki/Upstream_release_monitoring)")
+ c.setopt(pycurl.CONNECTTIMEOUT, 10)
+ c.setopt(pycurl.TIMEOUT, 30)
c.perform()
c.close()