This is an automated email from the ASF dual-hosted git repository.

pearl11594 pushed a commit to branch change-ldaps-config-nonDynamic
in repository https://gitbox.apache.org/repos/asf/cloudstack.git

commit 3a146a731f8cf79351812cc998d5a9577a0fd4f0
Author: Pearl Dsilva <[email protected]>
AuthorDate: Mon Apr 14 11:42:37 2025 -0400

    Makes LDAPS Configuration non dynamic
---
 .../src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java
 
b/plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java
index 6a62ad8d99d..460758dbb4c 100644
--- 
a/plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java
+++ 
b/plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java
@@ -173,7 +173,7 @@ public class LdapConfiguration implements Configurable{
             "ldap.truststore",
             null,
             "Sets the path to the truststore to use for SSL",
-            true,
+            false,
             ConfigKey.Scope.Domain);
     private static final ConfigKey<String> ldapTrustStorePassword = new 
ConfigKey<String>(
             "Secure",
@@ -181,7 +181,7 @@ public class LdapConfiguration implements Configurable{
             "ldap.truststore.password",
             null,
             "Sets the password for the truststore",
-            true,
+            false,
             ConfigKey.Scope.Domain);
 
     private final static int scope = SearchControls.SUBTREE_SCOPE;

Reply via email to