policies/sourceppa.py: Bump Launchpad timeout

Let's see if that helps with the timeouts we get during britney runs.
pre-rebase-2016-12-12
Martin Pitt 8 years ago
parent 11705f4a7b
commit efd8794804

@ -22,7 +22,7 @@ def query_lp_rest_api(obj, query):
transient failures connecting to launchpad. transient failures connecting to launchpad.
""" """
url = '%s%s?%s' % (LAUNCHPAD_URL, obj, urllib.parse.urlencode(query)) url = '%s%s?%s' % (LAUNCHPAD_URL, obj, urllib.parse.urlencode(query))
with urllib.request.urlopen(url, timeout=10) as req: with urllib.request.urlopen(url, timeout=30) as req:
code = req.getcode() code = req.getcode()
if 200 <= code < 300: if 200 <= code < 300:
return json.loads(req.read().decode('UTF-8')) return json.loads(req.read().decode('UTF-8'))

Loading…
Cancel
Save