1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-08 19:46:02 +01:00

refactor(libstore): use string_view in HttpBinaryCacheStore::makeRequest

This commit is contained in:
Bernardo Meurer Costa 2025-10-25 01:00:10 +00:00
parent 60f9489b83
commit 5dcfa86910
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -161,7 +161,7 @@ void HttpBinaryCacheStore::upsertFile(
}
}
FileTransferRequest HttpBinaryCacheStore::makeRequest(const std::string & path)
FileTransferRequest HttpBinaryCacheStore::makeRequest(std::string_view path)
{
/* Otherwise the last path fragment will get discarded. */
auto cacheUriWithTrailingSlash = config->cacheUri;

View file

@ -86,7 +86,7 @@ protected:
const std::string & mimeType,
uint64_t sizeHint) override;
FileTransferRequest makeRequest(const std::string & path);
FileTransferRequest makeRequest(std::string_view path);
void getFile(const std::string & path, Sink & sink) override;