Skip to content

Commit

Permalink
Merge pull request #228 from fogbow/develop
Browse files Browse the repository at this point in the history
Adding catch to SAMIdentityPlugin initialization class.
  • Loading branch information
giovannifs committed Sep 18, 2015
2 parents 1d2251d + 2b75a95 commit e21b5ca
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ public SAMLIdentityPlugin(Properties properties) {
String metadataURLProp = properties.getProperty("identity_saml_metadata_url");
this.samlMetadataURL = metadataURLProp == null ?
DEFAULT_METADATA_URL : metadataURLProp;
initSPDecrypter(properties);
try {
initSPDecrypter(properties);
} catch (Throwable e) {
LOGGER.error("Couldn't init SPDecripter", e);
}
}

private BasicX509Credential loadSPCredential(Properties properties) {
Expand Down

0 comments on commit e21b5ca

Please sign in to comment.