1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-03 05:43:16 +00:00

implicated error for ldap dial

This commit is contained in:
Lunny Xiao 2014-05-16 10:31:39 +08:00
parent f4486f3eec
commit f6c94c29d5

View file

@ -54,9 +54,8 @@ func LoginUser(name, passwd string) (a string, r bool) {
// searchEntry : search an LDAP source if an entry (name, passwd) is valide and in the specific filter
func (ls Ldapsource) SearchEntry(name, passwd string) (string, bool) {
l, err := ldapDial(ls)
if err != nil {
log.Debug("LDAP Connect error, disabled source %s", ls.Host)
log.Error("LDAP Connect error, %s:%v", ls.Host, err)
ls.Enabled = false
return "", false
}