aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-03-05 07:42:15 -0500
committerShea Levy <shea@shealevy.com>2018-03-05 07:42:15 -0500
commit088ef81759f22bf0115a52f183ba66b0be3b9ef2 (patch)
treecaab5b17fd7c0427b2fa054a953659ee165556af /src
parente9a5ce9b079f21a42b01bdee9a08953a2d34d901 (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')
-rw-r--r--src/libstore/remote-store.hh3
-rw-r--r--src/libstore/ssh-store.cc10
2 files changed, 12 insertions, 1 deletions
diff --git a/src/libstore/remote-store.hh b/src/libstore/remote-store.hh
index 7f36e2064..0cc20bf94 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
diff --git a/src/libstore/ssh-store.cc b/src/libstore/ssh-store.cc
index 107c6e1ec..398408ea8 100644
--- a/src/libstore/ssh-store.cc
+++ b/src/libstore/ssh-store.cc
@@ -51,6 +51,16 @@ private:
std::string host;
SSHMaster master;
+
+ void setOptions(RemoteStore::Connection & conn) override
+ {
+ /* TODO Add a way to explicitly ask for some options to be
+ forwarded. One option: A way to query the daemon for its
+ settings, and then a series of params to SSHStore like
+ forward-cores or forward-overridden-cores that only
+ override the requested settings.
+ */
+ };
};