Skip to content

Commit

Permalink
Merge pull request #6 from wuvt/fix/lint
Browse files Browse the repository at this point in the history
fix: failing clippy lint
  • Loading branch information
jbellerb authored Mar 4, 2024
2 parents 370a4a4 + ca8c985 commit 89f4e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fn main() {

let mut axum_notify = shutdown.subscribe();
let server = axum::serve(listener, router)
.with_graceful_shutdown(async move { _ = axum_notify.recv().await });
.with_graceful_shutdown(async move { axum_notify.recv().await });

info!("listening for connections on: {}", config.addr);
tokio::select! {
Expand Down

0 comments on commit 89f4e0e

Please sign in to comment.