mirror of https://github.com/portainer/portainer
fix(ldap): prevent panic if search error arise (#1216)
parent
09409804af
commit
601ae9daf2
|
@ -33,7 +33,10 @@ func searchUser(username string, conn *ldap.Conn, settings []portainer.LDAPSearc
|
||||||
|
|
||||||
// Deliberately skip errors on the search request so that we can jump to other search settings
|
// Deliberately skip errors on the search request so that we can jump to other search settings
|
||||||
// if any issue arise with the current one.
|
// if any issue arise with the current one.
|
||||||
sr, _ := conn.Search(searchRequest)
|
sr, err := conn.Search(searchRequest)
|
||||||
|
if err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if len(sr.Entries) == 1 {
|
if len(sr.Entries) == 1 {
|
||||||
found = true
|
found = true
|
||||||
|
|
Loading…
Reference in New Issue