-
Notifications
You must be signed in to change notification settings - Fork 145
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
Can't create second pool #92
Comments
Damn. I think I know why. |
Please use this by now: let mut pool = Pool::new(...);
// Turn off TLS slot right after pool creation
pool.use_tls(false); I'll publish fix soon. |
Problem solved in v10.0.0. Thanks! |
@blackbeam works fine, thank you very much! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to create second pool (Pool::new), connected to another DB, but when I'm trying to execute query - getting error about non-existing table, and in description of error MySQL gives name of DB - and it's still first DB, not another one.
mysql 9.0.1
The text was updated successfully, but these errors were encountered: