diff options
author | Shea Levy <shea@shealevy.com> | 2018-03-05T12·42-0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2018-03-05T12·42-0500 |
commit | 088ef81759f22bf0115a52f183ba66b0be3b9ef2 (patch) | |
tree | caab5b17fd7c0427b2fa054a953659ee165556af /src/libstore/remote-store.hh | |
parent | e9a5ce9b079f21a42b01bdee9a08953a2d34d901 (diff) |
ssh-ng: Don't forward options to the daemon.
This can be iterated on and currently leaves out settings we know we want to forward, but it fixes #1713 and fixes #1935 and isn't fundamentally broken like the status quo. Future changes are suggested in a comment.
Diffstat (limited to 'src/libstore/remote-store.hh')
-rw-r--r-- | src/libstore/remote-store.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/remote-store.hh b/src/libstore/remote-store.hh index 7f36e206416b..0cc20bf94194 100644 --- a/src/libstore/remote-store.hh +++ b/src/libstore/remote-store.hh @@ -122,11 +122,12 @@ protected: ref<Pool<Connection>> connections; + virtual void setOptions(Connection & conn); + private: std::atomic_bool failed{false}; - void setOptions(Connection & conn); }; class UDSRemoteStore : public LocalFSStore, public RemoteStore |