From 5e9506c176098502be5c505c752ea87ba1ad22ee Mon Sep 17 00:00:00 2001 From: Hashir Mohammed Date: Fri, 2 Jun 2017 02:35:20 -0400 Subject: [PATCH] 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 --- common/python/rift/downloader/url.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.17.1