diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-16T01·26-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-16T01·51+0000 |
commit | 0386fad78fadb8d7632f6af5d8c11d5b7dafb2e7 (patch) | |
tree | 7574e65ddc854c438cd37c799b2a6859378de76a | |
parent | 150e2bc908955c55a9ff13445006c8d18e75ced2 (diff) |
chore(3p/nix): {query,clear}FailedPaths are obsolete r/1313
They're not mentioned anywhere on the client or the server. Change-Id: Ia78c8bde49326f6bf69b4aeded083cfd3235131f Reviewed-on: https://cl.tvl.fyi/c/depot/+/1188 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
-rw-r--r-- | third_party/nix/src/libstore/worker-protocol.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/nix/src/libstore/worker-protocol.hh b/third_party/nix/src/libstore/worker-protocol.hh index 970d494acee1..c53d079a0668 100644 --- a/third_party/nix/src/libstore/worker-protocol.hh +++ b/third_party/nix/src/libstore/worker-protocol.hh @@ -30,8 +30,8 @@ typedef enum { wopQuerySubstitutablePathInfo = 21, wopQueryDerivationOutputs = 22, wopQueryAllValidPaths = 23, - wopQueryFailedPaths = 24, - wopClearFailedPaths = 25, + wopQueryFailedPaths = 24, // obsolete + wopClearFailedPaths = 25, // obsolete wopQueryPathInfo = 26, wopImportPaths = 27, // obsolete wopQueryDerivationOutputNames = 28, |