mirror of
https://github.com/NixOS/nix.git
synced 2025-11-15 15:02:42 +01:00
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.
(cherry picked from commit 088ef81759)
This commit is contained in:
parent
c67476fb7a
commit
0ccf36be35
2 changed files with 12 additions and 1 deletions
|
|
@ -122,11 +122,12 @@ protected:
|
||||||
|
|
||||||
ref<Pool<Connection>> connections;
|
ref<Pool<Connection>> connections;
|
||||||
|
|
||||||
|
virtual void setOptions(Connection & conn);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
std::atomic_bool failed{false};
|
std::atomic_bool failed{false};
|
||||||
|
|
||||||
void setOptions(Connection & conn);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class UDSRemoteStore : public LocalFSStore, public RemoteStore
|
class UDSRemoteStore : public LocalFSStore, public RemoteStore
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,16 @@ private:
|
||||||
std::string host;
|
std::string host;
|
||||||
|
|
||||||
SSHMaster master;
|
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.
|
||||||
|
*/
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue