diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-08-05T03·06-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-08-05T22·28+0000 |
commit | ea488b570535b1cea5cfec74aa908af92202fcd1 (patch) | |
tree | 26a7efd68a6a485f8cf6dfa9938243154e79914c /third_party/nix/src/proto | |
parent | f9df9b47339f3583741ccec9760dd8f3934bdee4 (diff) |
feat(3p/nix): Implement FindRoots, CollectGarbage r/1600
Implement the RPC client and server handlers for the FindRoots and CollectGarbage RPC calls Change-Id: Ifa5d582c6a33bd1e7661ac2fc860505ef404dad0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1656 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
Diffstat (limited to 'third_party/nix/src/proto')
-rw-r--r-- | third_party/nix/src/proto/worker.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/proto/worker.proto b/third_party/nix/src/proto/worker.proto index e632c6264f6f..abe8f622c9f2 100644 --- a/third_party/nix/src/proto/worker.proto +++ b/third_party/nix/src/proto/worker.proto @@ -203,7 +203,7 @@ message BuildPathsRequest { } message FindRootsResponse { - map<string, string> roots = 1; + map<string, StorePaths> roots = 1; } message SetOptionsRequest { |