From 7bcd3fe75487f9a75de8ab2f59c34743abf48edd Mon Sep 17 00:00:00 2001 From: Simon Wicky Date: Wed, 24 Sep 2025 15:14:42 +0200 Subject: [PATCH] fixy fix --- .../client_handling/websocket/connection_handler/fresh.rs | 8 -------- 1 file changed, 8 deletions(-) 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 78a1598216..54d6e02f6e 100644 --- a/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs +++ b/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs @@ -922,15 +922,7 @@ impl FreshHandler { S: AsyncRead + AsyncWrite + Unpin + Send, R: CryptoRng + RngCore + Send, { - let mut loop_iter: usize = 0; loop { - loop_iter += 1; - debug!( - remote = %self.peer_address, - iteration = loop_iter, - "running loop" - ); - let req = self.wait_for_initial_message().await; let initial_request = match req { Ok(req) => req,