aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/legacy-ssh-store.cc
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2021-01-26 10:50:44 +0100
committerregnat <rg@regnat.ovh>2021-02-23 08:04:03 +0100
commita2b69660a9b326b95d48bd222993c5225bbd5b5f (patch)
tree1684fd0b564872f9467894f57a67efc5c731635e /src/libstore/legacy-ssh-store.cc
parent5687564a27bee692f68a78b897a2d68715f6a3ce (diff)
LegacySSHStore: Send back the new realisations
To allow it to build ca derivations remotely
Diffstat (limited to 'src/libstore/legacy-ssh-store.cc')
-rw-r--r--src/libstore/legacy-ssh-store.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/legacy-ssh-store.cc b/src/libstore/legacy-ssh-store.cc
index 253c0033e..daf78042f 100644
--- a/src/libstore/legacy-ssh-store.cc
+++ b/src/libstore/legacy-ssh-store.cc
@@ -258,7 +258,9 @@ public:
if (GET_PROTOCOL_MINOR(conn->remoteVersion) >= 3)
conn->from >> status.timesBuilt >> status.isNonDeterministic >> status.startTime >> status.stopTime;
-
+ if (GET_PROTOCOL_MINOR(conn->remoteVersion) >= 6) {
+ status.builtOutputs = worker_proto::read(*this, conn->from, Phantom<DrvOutputs> {});
+ }
return status;
}