We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Follow-up for the issue disabling TLS configuration for IPv6 endpoint, #4224.
TLS configuration would fail due to the brackets in the IPv6 endpoint when extracting the domain name. By using tonic method domain_name(), https://docs.rs/tonic/0.12.3/tonic/transport/channel/struct.ClientTlsConfig.html#method.domain_name, it is possible to specify the domain name so that the transport error: InvalidDnsNameError is avoided.
tonic
domain_name()
transport error: InvalidDnsNameError
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Follow-up for the issue disabling TLS configuration for IPv6 endpoint, #4224.
TLS configuration would fail due to the brackets in the IPv6 endpoint when extracting the domain name. By using
tonic
methoddomain_name()
, https://docs.rs/tonic/0.12.3/tonic/transport/channel/struct.ClientTlsConfig.html#method.domain_name, it is possible to specify the domain name so that thetransport error: InvalidDnsNameError
is avoided.For Admin Use
The text was updated successfully, but these errors were encountered: