1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

HttpBinaryCacheStore: Use default number of retries for NARs

This commit is contained in:
Eelco Dolstra 2019-07-10 23:05:04 +02:00
parent f76b2a7fdd
commit 00f6fafad6
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -113,7 +113,6 @@ protected:
DownloadRequest makeRequest(const std::string & path) DownloadRequest makeRequest(const std::string & path)
{ {
DownloadRequest request(cacheUri + "/" + path); DownloadRequest request(cacheUri + "/" + path);
request.tries = 8;
return request; return request;
} }