Don't send plugin-files to the daemon.
This is radically unsafe and the daemon has already loaded its plugins anyway. Fixes cachix/devenv#276
This commit is contained in:
parent
119ba50eb8
commit
92edc38369
|
@ -266,6 +266,7 @@ void RemoteStore::setOptions(Connection & conn)
|
||||||
overrides.erase(settings.useSubstitutes.name);
|
overrides.erase(settings.useSubstitutes.name);
|
||||||
overrides.erase(loggerSettings.showTrace.name);
|
overrides.erase(loggerSettings.showTrace.name);
|
||||||
overrides.erase(settings.experimentalFeatures.name);
|
overrides.erase(settings.experimentalFeatures.name);
|
||||||
|
overrides.erase(settings.pluginFiles.name);
|
||||||
conn.to << overrides.size();
|
conn.to << overrides.size();
|
||||||
for (auto & i : overrides)
|
for (auto & i : overrides)
|
||||||
conn.to << i.first << i.second.value;
|
conn.to << i.first << i.second.value;
|
||||||
|
|
Loading…
Reference in a new issue