Skip to content
Snippets Groups Projects
Commit 0a9c64c1 authored by Denis Ledoux's avatar Denis Ledoux
Browse files

[FIX] auth_ldap: avoid to try twice the authentication to the ldap server

See #1982
parent ce84d610
No related branches found
No related tags found
No related merge requests found
......@@ -251,6 +251,10 @@ class users(osv.osv):
return user_id
registry = RegistryManager.get(db)
with registry.cursor() as cr:
cr.execute("SELECT id, active FROM res_users WHERE lower(login)=%s", (login,))
res = cr.fetchone()
if res:
return False
ldap_obj = registry.get('res.company.ldap')
for conf in ldap_obj.get_ldap_dicts(cr):
entry = ldap_obj.authenticate(conf, login, password)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment