We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Run following code:
MySqlConnectionStringBuilder builder = new MySqlConnectionStringBuilder { PipeName = "nonexistingpipe", ConnectionProtocol = MySqlConnectionProtocol.NamedPipe, Server = ".", ConnectionTimeout = 1 }; MySqlConnection conn = new MySqlConnection(builder.ConnectionString); conn.Open();
Expected behavior: throws exception after 1 second Actual behavior: hangs indefinitely on conn.Open()
The text was updated successfully, but these errors were encountered:
Add timeout for named pipe connections. Fixes #804
190c0d6
b3c96d8
dbd9d1e
Fixed in 0.64.1.
Sorry, something went wrong.
No branches or pull requests
Run following code:
Expected behavior: throws exception after 1 second
Actual behavior: hangs indefinitely on conn.Open()
The text was updated successfully, but these errors were encountered: