patch reminders

This commit is contained in:
jude
2022-03-22 22:21:47 +00:00
parent 878ea11502
commit afb2fbe4ff
9 changed files with 274 additions and 97 deletions

View File

@ -122,7 +122,12 @@ pub async fn initialize(
warn!("Exiting rocket runtime");
// distribute kill signal
kill_channel.send(());
match kill_channel.send(()) {
Ok(_) => {}
Err(e) => {
error!("Failed to issue kill signal: {:?}", e);
}
}
Ok(())
}