about summary refs log tree commit diff
path: root/src/libstore/http-binary-cache-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-08-30T13·48+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-08-30T13·48+0200
commit6631a6e1a15784214bae468a4fdd3168aeef4ab7 (patch)
tree04e0c098bf6ef748b4861e34ffaedde732acfa13 /src/libstore/http-binary-cache-store.cc
parent97b1af1cbe03a48793426bee883ad9c4c9fd7db8 (diff)
Increase the sleep time between download retries
Diffstat (limited to 'src/libstore/http-binary-cache-store.cc')
-rw-r--r--src/libstore/http-binary-cache-store.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/http-binary-cache-store.cc b/src/libstore/http-binary-cache-store.cc
index 42e9099b8e..bdcd2fd399 100644
--- a/src/libstore/http-binary-cache-store.cc
+++ b/src/libstore/http-binary-cache-store.cc
@@ -80,7 +80,8 @@ protected:
         auto downloader(downloaders.get());
         DownloadOptions options;
         options.showProgress = DownloadOptions::no;
-        options.tries = 3;
+        options.tries = 5;
+        options.baseRetryTimeMs = 1000;
         try {
             return downloader->download(cacheUri + "/" + path, options).data;
         } catch (DownloadError & e) {