Skip to content
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

Bug2190283-AddCRLServlet-SEVERE-NOT-SUPPORTED-messages #4427

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ protected void process(CMSRequest cmsReq) throws EBaseException {
cs.putString(publisherPrefix+".path", "/ocsp/agent/ocsp/addCRL");
cs.putString(publisherPrefix+".pluginName", "OCSPPublisher");
cs.putString(publisherPrefix+".enableClientAuth", "true");
cs.putString(rulePrefix+".enable", "true");
cs.putString(rulePrefix+".enable", "false");
cs.putString(rulePrefix+".mapper", "NoMap");
cs.putString(rulePrefix+".pluginName", "Rule");
cs.putString(rulePrefix+".publisher", "OCSPPublisher-"+ocspname);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,9 @@ private String formDN(IRequest req, Object obj) throws
X509CRLImpl crl = (X509CRLImpl) obj;
subjectDN = (X500Name) crl.getIssuerDN();

logger.warn("LdapSimpleMap: crl issuer dn: " + subjectDN + ": " + e.getMessage(), e);
// We know by now that obj is X509CRLImpl instead of
// X509Certificate; no warning needed
// logger.warn("LdapSimpleMap: crl issuer dn: " + subjectDN + ": " + e.getMessage(), e);
} catch (ClassCastException ex) {
logger.warn(CMS.getLogMessage("PUBLISH_PUBLISH_OBJ_NOT_SUPPORTED",
((req == null) ? "" : req.getRequestId().toString())), ex);
Expand Down