This is an automated email from the ASF dual-hosted git repository. nixon pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/atlas.git
commit 1f871efb128e2e4ff2927f0196617bb278049a70 Author: chaitali borole <[email protected]> AuthorDate: Wed Apr 22 16:23:18 2020 +0530 ATLAS-3667 : Option to store Ldap/AD bind password in jceks keystore file #2 (Set MASK_LDAP_PASSWORD constant value to "********" to be sync with other applications.) Signed-off-by: nixonrodrigues <[email protected]> --- intg/src/main/java/org/apache/atlas/ApplicationProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intg/src/main/java/org/apache/atlas/ApplicationProperties.java b/intg/src/main/java/org/apache/atlas/ApplicationProperties.java index e40ca88..1f1f377 100644 --- a/intg/src/main/java/org/apache/atlas/ApplicationProperties.java +++ b/intg/src/main/java/org/apache/atlas/ApplicationProperties.java @@ -60,7 +60,7 @@ public final class ApplicationProperties extends PropertiesConfiguration { public static final String LDAP_TYPE = "atlas.authentication.method.ldap.type"; public static final String LDAP_AD_BIND_PASSWORD = "atlas.authentication.method.ldap.ad.bind.password"; public static final String LDAP_BIND_PASSWORD = "atlas.authentication.method.ldap.bind.password"; - public static final String MASK_LDAP_PASSWORD = "*****"; + public static final String MASK_LDAP_PASSWORD = "********"; public static final String DEFAULT_GRAPHDB_BACKEND = GRAPHBD_BACKEND_JANUS; public static final boolean DEFAULT_SOLR_WAIT_SEARCHER = true; public static final boolean DEFAULT_INDEX_MAP_NAME = false;
