diff options
Diffstat (limited to 'tvix/store/src/errors.rs')
-rw-r--r-- | tvix/store/src/errors.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tvix/store/src/errors.rs b/tvix/store/src/errors.rs index 36a4320cb3e6..3b23f972b045 100644 --- a/tvix/store/src/errors.rs +++ b/tvix/store/src/errors.rs @@ -1,5 +1,6 @@ use std::sync::PoisonError; use thiserror::Error; +use tokio::task::JoinError; use tonic::Status; /// Errors related to communication with the store. @@ -18,6 +19,12 @@ impl<T> From<PoisonError<T>> for Error { } } +impl From<JoinError> for Error { + fn from(value: JoinError) -> Self { + Error::StorageError(value.to_string()) + } +} + impl From<Error> for Status { fn from(value: Error) -> Self { match value { |