Turn up the batch/burst size for draining the pending queue faster.
BUG=334681
TEST=None
Review URL: https://codereview.chromium.org/139583003
git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/commit-queue@245112 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/pending_manager.py b/pending_manager.py
index 3efb648..b8b176b 100644
--- a/pending_manager.py
+++ b/pending_manager.py
@@ -146,7 +146,7 @@
# Maximum number of commits done in a burst.
MAX_COMMIT_BURST = 4
# Delay (secs) between commit bursts.
- COMMIT_BURST_DELAY = 10*60
+ COMMIT_BURST_DELAY = 8*60
def __init__(self, context_obj, pre_patch_verifiers, verifiers,
project_name=''):