Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jdockerty committed Dec 6, 2023
1 parent 9f79a8d commit b034e59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/lb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ impl LB {
// check duration.
tokio::time::sleep(Duration::from_millis(500)).await;
}
Err(TryRecvError::Disconnected) => error!("Tried to read from channel after cancel was received from sender!")
Err(TryRecvError::Disconnected) => {
error!("Tried to read from channel after cancel was received from sender!")
}
}
}
});
Expand Down
1 change: 0 additions & 1 deletion src/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ impl TcpProxy {

#[async_trait]
impl Proxy for TcpProxy {

fn protocol_type(&self) -> Protocol {
Protocol::Tcp
}
Expand Down

0 comments on commit b034e59

Please sign in to comment.