aboutsummaryrefslogtreecommitdiffstats
path: root/mumd/src
diff options
context:
space:
mode:
Diffstat (limited to 'mumd/src')
-rw-r--r--mumd/src/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/mumd/src/main.rs b/mumd/src/main.rs
index 341300e..f298070 100644
--- a/mumd/src/main.rs
+++ b/mumd/src/main.rs
@@ -111,7 +111,10 @@ async fn receive_commands(
let response = match rx.await {
Ok(r) => r,
- Err(_) => Ok(None),
+ Err(_) => {
+ error!("Internal command response sender dropped");
+ Ok(None)
+ }
};
let mut serialized = BytesMut::new();
bincode::serialize_into((&mut serialized).writer(), &response).unwrap();