Hiroshi Tsutsui

Results 1 comments of Hiroshi Tsutsui

The following patch may fix the issue. ``` --- a/ldapauthenticator/ldapauthenticator.py +++ b/ldapauthenticator/ldapauthenticator.py @@ -309,7 +309,7 @@ class LDAPAuthenticator(Authenticator): self.server_address, port=self.server_port, use_ssl=self.use_ssl ) auto_bind = ( - ldap3.AUTO_BIND_NO_TLS if self.use_ssl else...