diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-08-20 16:49:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 16:49:23 +0200 |
commit | 4d77513d97775c05b19b0676a76fcdd3d00bea8b (patch) | |
tree | 141cfc45eaee1728d664728e41c9b7e9b4464841 /src/libstore/remote-store.hh | |
parent | 0d7376bd8a790da9e7c888d4330cfb17928c68d8 (diff) | |
parent | 9a9d834dc7bde0a4eafa2f7412e7a2f0df8c3262 (diff) |
Merge pull request #3859 from obsidiansystems/drv-outputs-map-allow-missing
`queryDerivationOutputMap` no longer assumes all outputs have a mapping
Diffstat (limited to 'src/libstore/remote-store.hh')
-rw-r--r-- | src/libstore/remote-store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/remote-store.hh b/src/libstore/remote-store.hh index 72d2a6689..b319e774b 100644 --- a/src/libstore/remote-store.hh +++ b/src/libstore/remote-store.hh @@ -51,7 +51,7 @@ public: StorePathSet queryDerivationOutputs(const StorePath & path) override; - OutputPathMap queryDerivationOutputMap(const StorePath & path) override; + std::map<std::string, std::optional<StorePath>> queryPartialDerivationOutputMap(const StorePath & path) override; std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override; StorePathSet querySubstitutablePaths(const StorePathSet & paths) override; |