We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d2251d + 2b75a95 commit e21b5caCopy full SHA for e21b5ca
src/main/java/org/fogbowcloud/manager/core/plugins/identity/saml/SAMLIdentityPlugin.java
@@ -94,7 +94,11 @@ public SAMLIdentityPlugin(Properties properties) {
94
String metadataURLProp = properties.getProperty("identity_saml_metadata_url");
95
this.samlMetadataURL = metadataURLProp == null ?
96
DEFAULT_METADATA_URL : metadataURLProp;
97
- initSPDecrypter(properties);
+ try {
98
+ initSPDecrypter(properties);
99
+ } catch (Throwable e) {
100
+ LOGGER.error("Couldn't init SPDecripter", e);
101
+ }
102
}
103
104
private BasicX509Credential loadSPCredential(Properties properties) {
0 commit comments