cargo clippy
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Pierre HUBERT 2025-02-26 21:19:16 +01:00
parent 7b3ceb2467
commit a33561eeb6

View File

@ -127,7 +127,6 @@ async fn main() -> Result<(), Box<dyn Error>> {
if count == 0 { if count == 0 {
log::warn!("infinite loop (client)"); log::warn!("infinite loop (client)");
drop(client_write);
drop(upstream); drop(upstream);
return; return;
} }
@ -166,7 +165,6 @@ async fn main() -> Result<(), Box<dyn Error>> {
if count == 0 { if count == 0 {
log::warn!("infinite loop (upstream)"); log::warn!("infinite loop (upstream)");
drop(client_write);
drop(upstream); drop(upstream);
return; return;
} }