diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-07-10T21·05+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-07-10T21·05+0200 |
commit | 00f6fafad61db4537268e1ffa636fd0d2ae86059 (patch) | |
tree | 4d4872ba856c52fb2521c934bb6211babf4bf54b /src/libstore/http-binary-cache-store.cc | |
parent | f76b2a7fdd7dabad7891400248f5cc778182ebf3 (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.cc | 1 |
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 3d17a89660e1..df2fb93320fc 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; } |