Skip to content

Commit

Permalink
Merge branch 'librespot-org:dev' into auth-token-from-login5
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrelt authored Dec 9, 2023
2 parents a54cc8f + 886617e commit 40c2a4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions discovery/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,10 @@ impl DiscoveryServer {
tokio::spawn(async {
let result = server
.with_graceful_shutdown(async {
debug!("Shutting down discovery server");
if close_rx.await.is_ok() {
debug!("unable to close discovery Rx channel completely");
if let Err(e) = close_rx.await {
debug!("unable to close discovery Rx channel completely: {e}");
}
debug!("Shutting down discovery server");
})
.await;

Expand Down

0 comments on commit 40c2a4d

Please sign in to comment.