Browse Source

Enable LDAP TLS in Hue configs is not working as expected (#2864)

Co-authored-by: Mahesh Balakrishnan <mbalakrishnan@cloudera.com>
Sreenath Somarajapuram 3 years ago
parent
commit
802811941d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      desktop/core/src/desktop/conf.py

+ 2 - 2
desktop/core/src/desktop/conf.py

@@ -1309,7 +1309,7 @@ LDAP = ConfigSection(
                            default=None,
                            help=_("The LDAP URL to connect to.")),
           USE_START_TLS=Config("use_start_tls",
-                               default=True,
+                               default=False,
                                type=coerce_bool,
                                help=_("Use StartTLS when communicating with LDAP server.")),
           LDAP_CERT=Config("ldap_cert",
@@ -1406,7 +1406,7 @@ LDAP = ConfigSection(
                      default=None,
                      help=_("The LDAP URL to connect to.")),
     USE_START_TLS=Config("use_start_tls",
-                         default=True,
+                         default=False,
                          type=coerce_bool,
                          help=_("Use StartTLS when communicating with LDAP server.")),
     LDAP_CERT=Config("ldap_cert",