Skip to content

Commit

Permalink
Fix #44
Browse files Browse the repository at this point in the history
  • Loading branch information
Rathna Natarajan committed Feb 16, 2022
1 parent 6c47174 commit 75cdde6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/com/axway/ExternalConfigLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ public void updatePassword(EntityStore entityStore) {
String mTLS = System.getenv("certandkeymtls" + "_" + filterName);
PKCS12 pkcs12 = importP12(entityStore, passwordValue, password);
Trace.info("P12 file alias name :" + pkcs12.getAlias());
configureP12(entityStore, filterName, pkcs12, mTLS);
if(!filterName.equalsIgnoreCase("certstore")) {
configureP12(entityStore, filterName, pkcs12, mTLS);
}
} catch (Exception e) {
Trace.error("Unable to add the p12 from Environment variable", e);
}
Expand Down

0 comments on commit 75cdde6

Please sign in to comment.