Uh oh!
There was an error while loading. Please reload this page.
Added QuicException.TransportErrorCode - #88550
Conversation
ghost
commented
Jul 9, 2023
Note regarding the This serves as a reminder for when your PR is modifying a ref *.cs file and adding/modifying public APIs, please make sure the API implementation in the src *.cs file is documented with triple slash comments, so the PR reviewers can sign off that change. |
ghost
commented
Jul 9, 2023
Tagging subscribers to this area: @dotnet/ncl Issue DetailsFor issue #87262
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
wfurt
left a comment
There was a problem hiding this comment.
please also look at #87679 (comment) and try to address it.
AlexRadch
commented
Jul 9, 2023
Thank you, I added the transport error code propagation. |
ManickaP
left a comment
There was a problem hiding this comment.
Looks good modulo comments, thanks!
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
ManickaP
left a comment
There was a problem hiding this comment.
One last comment, otherwise looks good and we can merge this, thanks!
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
karelz
commented
Jul 16, 2023
@AlexRadch will you be able to finish the changes? It is highly desirable to merge it by tomorrow 7/17 to catch our Platform complete deadline (= finish all features) for 8.0. Thanks! |
ManickaP
commented
Jul 17, 2023
I'm taking over, @wfurt has a pending PR on this, we need to get this in today. |
| throw ThrowHelper.GetExceptionForMsQuicStatus(status, $"GetParam({handle}, {parameter}) failed"); | ||
| } | ||
| ThrowHelper.ThrowIfMsQuicError(status, $"GetParam({handle}, {parameter}) failed"); |
There was a problem hiding this comment.
This is now going to allocate a string for the error message even in the success case.
There was a problem hiding this comment.
I think it is ok in interim as it is only perf optimization. I feel it is more important to get the API out.
| { | ||
| throw ThrowHelper.GetExceptionForMsQuicStatus(status, $"SetParam({handle}, {parameter}) failed"); | ||
| } | ||
| ThrowHelper.ThrowIfMsQuicError(status, $"SetParam({handle}, {parameter}) failed"); |
There was a problem hiding this comment.
This is now going to allocate a string for the error message even in the success case.
Resolves#87262#72666