discovery::server: fix startup log

This commit is contained in:
David Sheets 2023-12-06 11:58:08 +00:00
parent 87389a825c
commit 098c056677

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;