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 <hashir.mohammed@riftio.com>
diff --git a/common/python/rift/downloader/url.py b/common/python/rift/downloader/url.py
index 7ffb999..b6921c5 100644
--- a/common/python/rift/downloader/url.py
+++ b/common/python/rift/downloader/url.py
@@ -182,7 +182,7 @@
 
     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