Is StorageError
intentionally not exported?
#187
-
I was setting up error handling in my application using this is kind of what I am attempting: use apalis::prelude::StorageError;
#[derive(thiserror::Error, Debug)]
pub struct ApiError {
#[error("Failed to push job to storage: {0:?}")]
JobQueueError(#[from] StorageError)
} |
Beta Was this translation helpful? Give feedback.
Answered by
geofmureithi
Oct 18, 2023
Replies: 1 comment 2 replies
-
It might not be intentional. I can update it in the next release. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
geofmureithi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It might not be intentional. I can update it in the next release.
Right now you are able to use
JobError
though right?