From b8e3e3c828d05c9c89825452549d394b288c5913 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 13 Mar 2025 10:23:00 +0100 Subject: [PATCH] docs(tvix/tracing): fix docstrings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ibcdd50bfd20afd925a6f9eeacc436efdadbe5662 Reviewed-on: https://cl.tvl.fyi/c/depot/+/13255 Reviewed-by: Domen Kožar Autosubmit: flokli Reviewed-by: Marijan Petričević Tested-by: BuildkiteCI --- tvix/tracing/src/propagate/reqwest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvix/tracing/src/propagate/reqwest.rs b/tvix/tracing/src/propagate/reqwest.rs index e2afb3e94..483c178c9 100644 --- a/tvix/tracing/src/propagate/reqwest.rs +++ b/tvix/tracing/src/propagate/reqwest.rs @@ -7,7 +7,7 @@ use reqwest_tracing::{SpanBackendWithUrl, TracingMiddleware}; /// If otlp feature is disabled, this will not insert a `traceparent` into the header. It will /// basically function as a noop. /// -/// `traceparent` => https://www.w3.org/TR/trace-context/#trace-context-http-headers-format +/// `traceparent` => pub fn tracing_middleware() -> TracingMiddleware { TracingMiddleware::::new() }