From 3f88bc1484bd6fe26fbe485d733caf77e6961fd5 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Fri, 25 Feb 2011 13:33:42 -0500 Subject: Revert "Set hard limit on number of commands in batch request to 256." This reverts commit 79d22f8341026450ba7ca564e24812c9351c7e70. --- ipalib/plugins/batch.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'ipalib/plugins/batch.py') diff --git a/ipalib/plugins/batch.py b/ipalib/plugins/batch.py index 10277ceb..29dcc664 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] -- cgit