Merge pull request #1229 from dsheets/fix-discovery-server-startup-log

discovery::server: fix startup log
This commit is contained in:
Roderick van Domburg 2023-12-06 18:05:29 +01:00 committed by GitHub
commit 886617e41c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;