-
-
Notifications
You must be signed in to change notification settings - Fork 523
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
Connection acquire expand #1737
Conversation
src/error.rs
Outdated
@@ -17,7 +17,7 @@ use thiserror::Error; | |||
pub enum DbErr { | |||
/// This error can happen when the connection pool is fully-utilized | |||
#[error("Failed to acquire connection from pool")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#[error("Failed to acquire connection from pool")] | |
#[error("Failed to acquire connection from pool: {0}")] |
removed unknown as variant of ConnectionAcquireError updated DbErr Eq
This reverts commit 04d98cf.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!! @darkmmon
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nicely done
🎉 Released In 0.12.1 🎉Thank you everyone for the contribution! |
PR Info
New Features
Bug Fixes
Breaking Changes
Changes