Skip to content

Commit

Permalink
Fix pedantic clippy complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
matze committed Feb 10, 2024
1 parent ef84583 commit 1508ccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ async fn shutdown_signal() {
let terminate = std::future::pending::<()>();

tokio::select! {
_ = ctrl_c => {},
_ = terminate => {},
() = ctrl_c => {},
() = terminate => {},
}

tracing::info!("received signal, exiting ...");
Expand Down

0 comments on commit 1508ccc

Please sign in to comment.