diff options
author | regnat <rg@regnat.ovh> | 2021-01-26 10:50:44 +0100 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-02-23 08:04:03 +0100 |
commit | a2b69660a9b326b95d48bd222993c5225bbd5b5f (patch) | |
tree | 1684fd0b564872f9467894f57a67efc5c731635e /src/nix-store | |
parent | 5687564a27bee692f68a78b897a2d68715f6a3ce (diff) |
LegacySSHStore: Send back the new realisations
To allow it to build ca derivations remotely
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/nix-store.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 37191b9e6..559fd5355 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -905,6 +905,10 @@ static void opServe(Strings opFlags, Strings opArgs) if (GET_PROTOCOL_MINOR(clientVersion) >= 3) out << status.timesBuilt << status.isNonDeterministic << status.startTime << status.stopTime; + if (GET_PROTOCOL_MINOR(clientVersion >= 5)) { + worker_proto::write(*store, out, status.builtOutputs); + } + break; } |