diff --git a/ceod/model/LDAPService.py b/ceod/model/LDAPService.py index cb25462..e87a754 100644 --- a/ceod/model/LDAPService.py +++ b/ceod/model/LDAPService.py @@ -316,7 +316,9 @@ class LDAPService: self, dry_run: bool = False, members: Union[List[str], None] = None, - uwldap_batch_size: int = 100, + # The UWLDAP server currently has a result set limit of 50 + # Keep it low just to be safe + uwldap_batch_size: int = 10, ): if members: filter = '(|' + ''.join([f'(uid={uid})' for uid in members]) + ')'