diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-10-11T16·48+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-01-04T12·41+0100 |
commit | 8b44ed08e773017a3bdf9f527bbbdba7c6d4b1b8 (patch) | |
tree | 582cb0c82419c35bae54ec731fed1ec8e2b5d596 /src/libstore/ssh-store.cc | |
parent | 1ac8c0269a97853e762fb40a5105e4e99b9dc1e4 (diff) |
ssh-ng: Don't set CPU affinity on the remote
Fixes #3138. (cherry picked from commit 906d56a96b442d4dd8f924c1ce0d1eec0e214af3)
Diffstat (limited to 'src/libstore/ssh-store.cc')
-rw-r--r-- | src/libstore/ssh-store.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/ssh-store.cc b/src/libstore/ssh-store.cc index 39205ae2ce12..93e11738991f 100644 --- a/src/libstore/ssh-store.cc +++ b/src/libstore/ssh-store.cc @@ -35,6 +35,9 @@ public: return uriScheme + host; } + bool sameMachine() + { return false; } + void narFromPath(const Path & path, Sink & sink) override; ref<FSAccessor> getFSAccessor() override; |