Increase the timeout of download from 1s to 10s. This is to prevent intermittent...
[osm/SO.git] / common / python / rift / downloader / url.py
index 7ffb999..b6921c5 100644 (file)
@@ -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