diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-10 20:58:02 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-07-13 16:28:45 +0200 |
commit | fc84c358d9e55e9ba1d939d8974f6deef629848e (patch) | |
tree | c51ed8a28bef915c55fb79e8fe61adbd553313b2 /src/libstore/http-binary-cache-store.cc | |
parent | 400f1a9b59d95861b4dd171c45e2dc6cf263ab99 (diff) |
Make 'nix copy' to file:// binary caches run in constant memory
Diffstat (limited to 'src/libstore/http-binary-cache-store.cc')
-rw-r--r-- | src/libstore/http-binary-cache-store.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/http-binary-cache-store.cc b/src/libstore/http-binary-cache-store.cc index 451a64785..d9a292368 100644 --- a/src/libstore/http-binary-cache-store.cc +++ b/src/libstore/http-binary-cache-store.cc @@ -100,11 +100,11 @@ protected: } void upsertFile(const std::string & path, - const std::string & data, + Source & source, const std::string & mimeType) override { auto req = FileTransferRequest(cacheUri + "/" + path); - req.data = std::make_shared<string>(data); // FIXME: inefficient + req.data = std::make_shared<string>(source.drain()); req.mimeType = mimeType; try { getFileTransfer()->upload(req); |