diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-05-19 13:39:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 13:39:48 +0200 |
commit | 34381d57476bf2e919c06e21713e90bfbe063b45 (patch) | |
tree | 5132500dcb9786927688228221d7a398c0e796de /src/libstore/legacy-ssh-store.cc | |
parent | e31d9b910dcebd77028f5d4351e2cc7205baa321 (diff) | |
parent | a6f85e052c916f1589414be1a8ba999aff993296 (diff) |
Merge pull request #8215 from obsidiansystems/general-repair-path
Support `repairPath` on most stores.
Diffstat (limited to 'src/libstore/legacy-ssh-store.cc')
-rw-r--r-- | src/libstore/legacy-ssh-store.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstore/legacy-ssh-store.cc b/src/libstore/legacy-ssh-store.cc index 2012584e0..2d17866c1 100644 --- a/src/libstore/legacy-ssh-store.cc +++ b/src/libstore/legacy-ssh-store.cc @@ -344,6 +344,17 @@ public: virtual ref<FSAccessor> getFSAccessor() override { unsupported("getFSAccessor"); } + /** + * The default instance would schedule the work on the client side, but + * for consistency with `buildPaths` and `buildDerivation` it should happen + * on the remote side. + * + * We make this fail for now so we can add implement this properly later + * without it being a breaking change. + */ + void repairPath(const StorePath & path) override + { unsupported("repairPath"); } + void computeFSClosure(const StorePathSet & paths, StorePathSet & out, bool flipDirection = false, bool includeOutputs = false, bool includeDerivers = false) override |