Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/yellow-comics-cheer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@rocket.chat/meteor': patch
---

Fixes an issue on the LDAP Background Sync where the process would stop syncing users if any of the LDAP users couldn't be properly mapped to a Rocket.Chat User (for example, by not having an email address)
3 changes: 0 additions & 3 deletions apps/meteor/server/lib/ldap/Connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,6 @@ export class LDAPConnection {
realEntries++;
} catch (e) {
searchLogger.error(e);
throw e;
}
});

Expand Down Expand Up @@ -544,7 +543,6 @@ export class LDAPConnection {
entries.push(result as T);
} catch (e) {
searchLogger.error(e);
throw e;
}
});

Expand Down Expand Up @@ -622,7 +620,6 @@ export class LDAPConnection {
}
} catch (e) {
searchLogger.error(e);
throw e;
}
});

Expand Down
Loading