-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Possible QuicConnection leak #80172
Comments
Tagging subscribers to this area: @dotnet/ncl Issue DetailsThis method is called during the disposal of the listener. runtime/src/libraries/System.Net.Quic/src/System/Net/Quic/QuicListener.PendingConnection.cs Line 99 in 88f75a8
If the _finishHandshakeTask task has already been completed successfully the QuicConnection held by this task is never disposed of, and this is the only reference left to it.
|
Triage: looks like a legitimate bug, we should confirm this and fix it. It should be fairly simple fix. |
There seems to be a similar issue any time |
Yep and yep, problem is the same with cancellation, and |
This method is called during the disposal of the listener.
runtime/src/libraries/System.Net.Quic/src/System/Net/Quic/QuicListener.PendingConnection.cs
Line 99 in 88f75a8
If the _finishHandshakeTask task has already been completed successfully the QuicConnection held by this task is never disposed of, and this is the only reference left to it.
The text was updated successfully, but these errors were encountered: