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
From #872 (comment):
The following call stack is possible:
MySqlConnection.DisposeAsync MySqlConnection.CloseAsync ServerSession.ReturnToPool ConnectionPool.Return ServerSession.DisposeAsync(IOBehavior.Synchronous, CancellationToken.None).GetAwaiter().GetResult();
The two non-Async methods eventually cause sync-over-async in the failure path.
Async
The text was updated successfully, but these errors were encountered:
Made DisposeAsync fully async. Fixes mysql-net#876
c5b90fc
eb84a50
Signed-off-by: Dirk Lemstra <dirk@lemstra.org>
Merge pull request #892 from dlemstra/make-dispose-async-fully-async
aff965f
Made DisposeAsync fully async. Fixes #876
Successfully merging a pull request may close this issue.
From #872 (comment):
The following call stack is possible:
The two non-
Async
methods eventually cause sync-over-async in the failure path.The text was updated successfully, but these errors were encountered: