summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/batch.py
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-02-25 13:33:42 -0500
committerAdam Young <ayoung@redhat.com>2011-03-01 17:35:56 -0500
commit3f88bc1484bd6fe26fbe485d733caf77e6961fd5 (patch)
treecec4a8b56f8baab2284a59fd3c6980183144d77a /ipalib/plugins/batch.py
parent510eb79ff4590b21706cd699345fbfaf76250e58 (diff)
downloadfreeipa-3f88bc1484bd6fe26fbe485d733caf77e6961fd5.tar.gz
freeipa-3f88bc1484bd6fe26fbe485d733caf77e6961fd5.tar.xz
freeipa-3f88bc1484bd6fe26fbe485d733caf77e6961fd5.zip
Revert "Set hard limit on number of commands in batch request to 256."
This reverts commit 79d22f8341026450ba7ca564e24812c9351c7e70.
Diffstat (limited to 'ipalib/plugins/batch.py')
-rw-r--r--ipalib/plugins/batch.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/ipalib/plugins/batch.py b/ipalib/plugins/batch.py
index 10277ceba..29dcc6648 100644
--- a/ipalib/plugins/batch.py
+++ b/ipalib/plugins/batch.py
@@ -80,8 +80,6 @@ class batch(Command):
def execute(self, *args, **options):
results=[]
- if len(args[0]) > 256:
- raise errors.BatchRequestLimitError(limit=256)
for arg in args[0]:
try:
a = arg['params'][0]