-
Notifications
You must be signed in to change notification settings - Fork 361
Handler Error type on Master #229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
No, it should be |
I got this. Covered in #231 |
Sorry about that, @aklitzke! This should be resolved now. |
Awesome, thanks! Not sure what your strategy is around testing, but should there maybe be some testing around this? Surprised you'd be able to make a breaking change to the api like that and not have some tests/examples fail to compile or something |
Few thoughts there.
|
On current master, the handler requires an
anyhow::Error
as the error type for the handler, as opposed toBox<dyn std::error::Error + Send + Sync + 'static>
in previous versions. However, this new type isn't re-exported from lib, requiring consumers of this crate to also importanyhow
. Is this going to stick around? Maybe it would make sense to reexport your error type?The text was updated successfully, but these errors were encountered: