Ignore missing channel path on pulse map

This commit is contained in:
Dominik Werder
2023-01-06 08:13:41 +01:00
parent 3ded7c6136
commit f781166053
6 changed files with 40 additions and 16 deletions

View File

@@ -276,6 +276,12 @@ impl From<serde_json::Error> for Error {
}
}
impl<T> From<async_channel::SendError<T>> for Error {
fn from(k: async_channel::SendError<T>) -> Self {
Self::with_msg(format!("{:?}", k))
}
}
impl From<async_channel::RecvError> for Error {
fn from(k: async_channel::RecvError) -> Self {
Self::with_msg(k.to_string())