-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Implement pagination for getLDAPRoleMappings #34043
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement pagination for getLDAPRoleMappings #34043
Conversation
cf331f8 to
a276b57
Compare
e38c218 to
5f51299
Compare
|
@ahus1 @pedroigor Can any of you please trigger the CI for this one? |
5f51299 to
6f7f8ff
Compare
...ap/src/main/java/org/keycloak/storage/ldap/mappers/membership/UserRolesRetrieveStrategy.java
Outdated
Show resolved
Hide resolved
6f7f8ff to
1b8fbd2
Compare
|
@sguilhen think we can also restart a pipeline now. Tested fully it manually for all the build steps so maybe mature enough to attempt a rebuild. |
|
@TheOignon You don't have to run all of those manually, that's too much trouble :) @ahus1 @pedroigor Would you mind re-running the CI for this one? |
1b8fbd2 to
92a84b6
Compare
|
@pedroigor failure doesn't seem related - need to re-run the windows dist test |
On Active Directory, allow to retrieve more groups than the MaxPageSize (default to 1000). Without this patch, we need to increase the MaxPageSize which does not really scale. Implemented only for the LoadRolesByMember startegy. Closes keycloak#34042 Signed-off-by: Alexi Vandevoorde <[email protected]>
Signed-off-by: Alexi Vandevoorde <[email protected]>
92a84b6 to
5d85e34
Compare
* Implement pagination for getLDAPRoleMappings On Active Directory, allow to retrieve more groups than the MaxPageSize (default to 1000). Without this patch, we need to increase the MaxPageSize which does not really scale. Implemented only for the LoadRolesByMember startegy. Closes keycloak#34042 Signed-off-by: Alexi Vandevoorde <[email protected]>
* Implement pagination for getLDAPRoleMappings On Active Directory, allow to retrieve more groups than the MaxPageSize (default to 1000). Without this patch, we need to increase the MaxPageSize which does not really scale. Implemented only for the LoadRolesByMember startegy. Closes #34042 Signed-off-by: Alexi Vandevoorde <[email protected]> Co-authored-by: Alexi Vandevoorde <[email protected]>
Closes #34042
On Active Directory, allow to retrieve more groups than the MaxPageSize (default to 1000). Without this patch, we need to increase the MaxPageSize which does not really scale. Implemented only for the LoadRolesByMember startegy.