From 7567b57553ca258e78448eb3aa6f82e2c4320ea4 Mon Sep 17 00:00:00 2001 From: Floriane TUERNAL SABOTINOV Date: Tue, 2 Sep 2025 15:25:20 +0200 Subject: [PATCH] Revert "missing span" This reverts commit 281de87871b783c1c50b0f187de7b9009dbec164. --- .../websocket/connection_handler/authenticated.rs | 1 - .../node/client_handling/websocket/connection_handler/fresh.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/gateway/src/node/client_handling/websocket/connection_handler/authenticated.rs b/gateway/src/node/client_handling/websocket/connection_handler/authenticated.rs index b532469b0e..a2f8be834c 100644 --- a/gateway/src/node/client_handling/websocket/connection_handler/authenticated.rs +++ b/gateway/src/node/client_handling/websocket/connection_handler/authenticated.rs @@ -584,7 +584,6 @@ impl AuthenticatedHandler { /// Simultaneously listens for incoming client requests, which realistically should only be /// binary requests to forward sphinx packets or increase bandwidth /// and for sphinx packets received from the mix network that should be sent back to the client. - #[instrument(level = "debug", skip_all)] pub(crate) async fn listen_for_requests(mut self, mut shutdown: TaskClient) where R: Rng + CryptoRng, diff --git a/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs b/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs index f883e578d1..b4b02f6d58 100644 --- a/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs +++ b/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs @@ -1005,7 +1005,6 @@ impl FreshHandler { Ok(Some(client_details)) } - #[instrument(skip_all)] pub(crate) async fn handle_until_authenticated_or_failure( mut self, shutdown: &mut TaskClient, @@ -1067,7 +1066,6 @@ impl FreshHandler { None } - #[instrument(skip_all)] pub(crate) async fn wait_for_initial_message( &mut self, ) -> Result