diff options
Diffstat (limited to 'mumd/src/main.rs')
| -rw-r--r-- | mumd/src/main.rs | 5 |
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(); |
