-
Notifications
You must be signed in to change notification settings - Fork 3.3k
RelationalConnection.Close calls async function #26790
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
🤦 Thank @cincuranet - this was my fault, clearly a copy-paste error during the logging optimization work. Sorry for the trouble. I've submitted #26793 for the 6.0 branch, with the proper description template for inclusion in a 6.0.x patch. |
No problem. I'm now just happy to find it. :) It took quite some time to spot the problem.
|
roji
added a commit
to roji/efcore
that referenced
this issue
Dec 8, 2021
Also add missing ConfigureAwait(false) and StringComparison.Ordinal, because of a configuration mismatch between FxCop and the built-in diagnostics analyzers. Fixes dotnet#26790
roji
added a commit
to roji/efcore
that referenced
this issue
Dec 8, 2021
Also add missing ConfigureAwait(false) and StringComparison.Ordinal, because of a configuration mismatch between FxCop and the built-in diagnostics analyzers. Fixes dotnet#26790
roji
added a commit
to roji/efcore
that referenced
this issue
Dec 9, 2021
Also add missing ConfigureAwait(false) and StringComparison.Ordinal, because of a configuration mismatch between FxCop and the built-in diagnostics analyzers. Fixes dotnet#26790
roji
added a commit
to roji/efcore
that referenced
this issue
Dec 16, 2021
Also add missing ConfigureAwait(false) and StringComparison.Ordinal, because of a configuration mismatch between FxCop and the built-in diagnostics analyzers. Fixes dotnet#26790
roji
added a commit
to roji/efcore
that referenced
this issue
Dec 16, 2021
Also add missing ConfigureAwait(false) and StringComparison.Ordinal, because of a configuration mismatch between FxCop and the built-in diagnostics analyzers. Fixes dotnet#26790
roji
added a commit
that referenced
this issue
Dec 16, 2021
Also add missing ConfigureAwait(false) and StringComparison.Ordinal, because of a configuration mismatch between FxCop and the built-in diagnostics analyzers. Fixes #26790
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
The
RelationalConnection.Close
method callsCloseDbConnectionAsync
in its codepath.This obviously causes race between the closing code and what follows. Causing a nice havoc in FirebirdClient. :)
The text was updated successfully, but these errors were encountered: