Skip to content

Commit

Permalink
never log the password's value!
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnmckinney committed Jan 19, 2021
1 parent e77a658 commit 6f00f3b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ private void init()
{
// validate certificates but allow self-signed certs if within this truststore:
config.setTrustManagers( new LdapClientTrustStoreManager( Config.getInstance().getProperty( GlobalIds
.TRUST_STORE ), Config.getInstance().getProperty( GlobalIds.TRUST_STORE_PW ).toCharArray(), null,
.TRUST_STORE ), Config.getInstance().getProperty( GlobalIds.TRUST_STORE_PW, true ).toCharArray(), null,
true ) );
}

Expand Down Expand Up @@ -405,4 +405,4 @@ public static void closeAllConnectionPools()
LOG.warn( "Error closing log pool: " + e );
}
}
}
}

0 comments on commit 6f00f3b

Please sign in to comment.