-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
RelationalConnection.Close calls async function #26790
Labels
area-global
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
customer-reported
Servicing-approved
type-bug
Milestone
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
ajcvickers
added
the
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
label
Dec 14, 2021
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-global
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
customer-reported
Servicing-approved
type-bug
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: