We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae74a9e commit 199cc69Copy full SHA for 199cc69
1 file changed
xds/src/main/java/io/grpc/xds/internal/security/certprovider/CertProviderSslContextProvider.java
@@ -183,8 +183,9 @@ protected final boolean isMtls() {
183
}
184
185
protected final boolean isNormalTlsAndClientSide() {
186
- // We don't do (rootCertInstance != null || isUsingSystemRootCerts) here because of where this method is called
187
- // from. With the rootCertInstance being null when using system root certs, there is nothing to update.
+ // We don't do (rootCertInstance != null || isUsingSystemRootCerts) here because of how this
+ // method is used. With the rootCertInstance being null when using system root certs, there
188
+ // is nothing to update in the SslContext
189
return rootCertInstance != null && certInstance == null;
190
191
0 commit comments