diff options
author | Alex Auvolat <alex@adnab.me> | 2020-04-19 17:59:59 +0000 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-04-19 17:59:59 +0000 |
commit | ea75564851851b969ef23797537c813ba607b84a (patch) | |
tree | d5bdb1a19a546cbbd92e35dbd496acfd16522dd9 /src/error.rs | |
parent | e325c7f47a9ad7777358b669f62a7c613f676ecd (diff) | |
download | garage-ea75564851851b969ef23797537c813ba607b84a.tar.gz garage-ea75564851851b969ef23797537c813ba607b84a.zip |
More aggressive sync timings & improve other stuff
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs index 678ab72d..50a0a44b 100644 --- a/src/error.rs +++ b/src/error.rs @@ -83,3 +83,9 @@ impl<T> From<tokio::sync::watch::error::SendError<T>> for Error { Error::Message(format!("Watch send error")) } } + +impl<T> From<tokio::sync::mpsc::error::SendError<T>> for Error { + fn from(_e: tokio::sync::mpsc::error::SendError<T>) -> Error { + Error::Message(format!("MPSC send error")) + } +} |