We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03bc812 commit e894a52Copy full SHA for e894a52
1 file changed
src/main/java/com/databricks/jdbc/dbclient/impl/common/ConfiguratorUtils.java
@@ -442,12 +442,9 @@ public static CertPathTrustManagerParameters buildTrustManagerParameters(
442
PKIXRevocationChecker.Option.SOFT_FAIL,
443
PKIXRevocationChecker.Option.NO_FALLBACK,
444
PKIXRevocationChecker.Option.PREFER_CRLS));
445
- LOGGER.info(
446
- "Configured revocation checker to accept undetermined certificate revocation status");
447
- } else {
448
449
- "Configured revocation checker with strict validation (undetermined status is rejected)");
450
}
+ LOGGER.info("Certificate revocation enabled. Undetermined revocation accepted: "
+ + acceptUndeterminedCertificateRevocation);
451
452
pkixBuilderParameters.addCertPathChecker(revocationChecker);
453
0 commit comments