diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2021-02-27 05:42:13 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2021-02-27 05:42:13 +0000 |
commit | f0ad29acc1f2c9e82679c3af434a8bf185f36b94 (patch) | |
tree | d1c501cdc6e242b7567ac992b7393c62e2f35782 /src/nix-store | |
parent | ca0994819d68aee26a2906c37a47ae609ac46c4c (diff) | |
parent | 6512be0a99360a1ae459f9efbf77ca5992477ec7 (diff) |
Merge remote-tracking branch 'upstream/master' into path-info
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 37a23fe24..dfa5de62f 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -911,6 +911,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; } |