From 3359e095cd25235ab9dff2bbccf157109c9384ee Mon Sep 17 00:00:00 2001 From: Lann Martin Date: Wed, 27 Aug 2025 16:49:56 -0400 Subject: [PATCH] trigger-http: Fix otel context propagation The debug_span! was disabled by default tracing config, preventing otel context from being propagated through it. Signed-off-by: Lann Martin --- crates/trigger-http/src/wasi.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/trigger-http/src/wasi.rs b/crates/trigger-http/src/wasi.rs index 2a38d6d664..0355e1ffe1 100644 --- a/crates/trigger-http/src/wasi.rs +++ b/crates/trigger-http/src/wasi.rs @@ -93,7 +93,7 @@ impl HttpExecutor for WasiHttpExecutor<'_> { HandlerType::Wagi(_) => unreachable!("should have used WagiExecutor instead"), }; - let span = tracing::debug_span!("execute_wasi"); + let span = tracing::info_span!("execute_wasi"); let handle = task::spawn( async move { let result = match handler {