From a33561eeb623c7748c9957629b4551fa2e735fe6 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Wed, 26 Feb 2025 21:19:16 +0100 Subject: [PATCH] cargo clippy --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 9d7faae..c5dc4bc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -127,7 +127,6 @@ async fn main() -> Result<(), Box> { if count == 0 { log::warn!("infinite loop (client)"); - drop(client_write); drop(upstream); return; } @@ -166,7 +165,6 @@ async fn main() -> Result<(), Box> { if count == 0 { log::warn!("infinite loop (upstream)"); - drop(client_write); drop(upstream); return; }