From: Hashir Mohammed Date: Fri, 2 Jun 2017 06:35:20 +0000 (-0400) Subject: Increase the timeout of download from 1s to 10s. This is to prevent intermittent... X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F16%2F1916%2F1;p=osm%2FSO.git Increase the timeout of download from 1s to 10s. This is to prevent intermittent download issue seen system-test run Signed-off-by: Hashir Mohammed --- diff --git a/common/python/rift/downloader/url.py b/common/python/rift/downloader/url.py index 7ffb9997..b6921c56 100644 --- a/common/python/rift/downloader/url.py +++ b/common/python/rift/downloader/url.py @@ -182,7 +182,7 @@ class UrlDownloader(base.AbstractDownloader): def _download(self): - url_options = {"verify": False, "timeout": 1} + url_options = {"verify": False, "timeout": 10} if self.auth is not None: url_options["auth"] = self.auth