From 7781ea3205991d99436a941139ac4650c367d1a9 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 30 Oct 2019 11:05:26 -0700 Subject: [PATCH] remove this check, let if get marked as conflicting --- src/externalldap.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/externalldap.js b/src/externalldap.js index 9f9e4017d..258ebc686 100644 --- a/src/externalldap.js +++ b/src/externalldap.js @@ -173,10 +173,6 @@ function sync(progressCallback, callback) { // we ignore all errors here and just log them for now async.eachSeries(ldapUsers, function (user, iteratorCallback) { - - // ignore the bindDn user if any - if (user.dn === externalLdapConfig.bindDn) return iteratorCallback(); - const username = user[externalLdapConfig.usernameField]; const email = user.mail; const displayName = user.cn;