-
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
fix TLS resume with HttpClientHandler on Linux #88214
Conversation
Tagging subscribers to this area: @dotnet/ncl Issue Detailsfixes #75434 The existing code prevents TLS resume on Linux when I updated test loopback server with
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
all the failures are known according to `build analyses. |
fixes #75434
contributes to #75545
The existing code prevents TLS resume on Linux when
HttpClientHandler
is used (works fine ifSocketsHttpHandler
is used directly)I updated test loopback server with
CertificateContext
. I was debating if we should add while ssl options but decided not to as there is currently no other use for it.