diff options
author | Florian Klink <flokli@flokli.de> | 2024-10-21T13·24+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-11-12T00·28+0000 |
commit | 72bc4e0270891d72213989096ff1180adc07a578 (patch) | |
tree | 9d3f619d5e6ea3d5aa701013f30c4841b461b8c8 /tvix/store/src/pathinfoservice | |
parent | 0c5ad949148b178c13b0cb8f2ed3fe274e9cf522 (diff) |
fix(tvix): use tracing::field::Empty for all indicatif.pb_show r/8906
This prevents the field from getting printed to stderr, apparently. Change-Id: Ia9860e4ff37224003154db88ee5f83103060e626 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12756 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: Ilan Joselevich <personal@ilanjoselevich.com>
Diffstat (limited to 'tvix/store/src/pathinfoservice')
-rw-r--r-- | tvix/store/src/pathinfoservice/grpc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/pathinfoservice/grpc.rs b/tvix/store/src/pathinfoservice/grpc.rs index 2e18f510253e..6ec88aec8281 100644 --- a/tvix/store/src/pathinfoservice/grpc.rs +++ b/tvix/store/src/pathinfoservice/grpc.rs @@ -119,7 +119,7 @@ where <T::ResponseBody as tonic::codegen::Body>::Error: Into<tonic::codegen::StdError> + Send, T::Future: Send, { - #[instrument(level = "trace", skip_all, fields(root_node = ?root_node, indicatif.pb_show=1))] + #[instrument(level = "trace", skip_all, fields(root_node = ?root_node, indicatif.pb_show=tracing::field::Empty))] async fn calculate_nar(&self, root_node: &Node) -> Result<(u64, [u8; 32]), Error> { let span = Span::current(); span.pb_set_message("Waiting for NAR calculation"); |