mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
Merge pull request #14377 from lovesegfault/makerequest-stringview
refactor(libstore): use string_view in HttpBinaryCacheStore::makeRequest
This commit is contained in:
commit
91ed3701fe
2 changed files with 2 additions and 2 deletions
|
|
@ -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. */
|
/* Otherwise the last path fragment will get discarded. */
|
||||||
auto cacheUriWithTrailingSlash = config->cacheUri;
|
auto cacheUriWithTrailingSlash = config->cacheUri;
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ protected:
|
||||||
const std::string & mimeType,
|
const std::string & mimeType,
|
||||||
uint64_t sizeHint) override;
|
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;
|
void getFile(const std::string & path, Sink & sink) override;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue