aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/http-binary-cache-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-07-10 23:05:04 +0200
committerEelco Dolstra <edolstra@gmail.com>2019-07-10 23:05:04 +0200
commit00f6fafad61db4537268e1ffa636fd0d2ae86059 (patch)
tree4d4872ba856c52fb2521c934bb6211babf4bf54b /src/libstore/http-binary-cache-store.cc
parentf76b2a7fdd7dabad7891400248f5cc778182ebf3 (diff)
HttpBinaryCacheStore: Use default number of retries for NARs
Diffstat (limited to 'src/libstore/http-binary-cache-store.cc')
-rw-r--r--src/libstore/http-binary-cache-store.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstore/http-binary-cache-store.cc b/src/libstore/http-binary-cache-store.cc
index 3d17a8966..df2fb9332 100644
--- a/src/libstore/http-binary-cache-store.cc
+++ b/src/libstore/http-binary-cache-store.cc
@@ -113,7 +113,6 @@ protected:
DownloadRequest makeRequest(const std::string & path)
{
DownloadRequest request(cacheUri + "/" + path);
- request.tries = 8;
return request;
}