From 8d00d7c13038abc152afbd46c96108753506fb77 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 23 May 2012 11:00:24 -0400 Subject: Enforce sizelimit in permission-find, post_callback returns truncated We actually perform two searches in permission-find. The first looks for matches within the permission object itself. The second looks at matches in the underlying aci. We need to break out in two places. The first is if we find enough matches in the permission itself. The second when we are appending matches from acis. The post_callback() definition needed to be modified to return the truncated value so a plugin author can modify that value. https://fedorahosted.org/freeipa/ticket/2322 --- ipalib/plugins/pwpolicy.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ipalib/plugins/pwpolicy.py') diff --git a/ipalib/plugins/pwpolicy.py b/ipalib/plugins/pwpolicy.py index 7be590f2e..77e6f2c79 100644 --- a/ipalib/plugins/pwpolicy.py +++ b/ipalib/plugins/pwpolicy.py @@ -498,4 +498,6 @@ class pwpolicy_find(LDAPSearch): except KeyError: pass + return truncated + api.register(pwpolicy_find) -- cgit