From 39252ba028012fd14e4e283217d842fb80206c52 Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Tue, 23 Aug 2016 14:06:59 -0700 Subject: [PATCH] gitc: Lower concurrent ls-projects requests Too many requests at the same time is causing 502 errors. Change-Id: Ic8fbb2fbb7fb6014733fa5be018d2dc02472f704 --- gitc_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitc_utils.py b/gitc_utils.py index 7a35e7a0..0d4a5c38 100644 --- a/gitc_utils.py +++ b/gitc_utils.py @@ -26,7 +26,7 @@ import wrapper from error import ManifestParseError -NUM_BATCH_RETRIEVE_REVISIONID = 300 +NUM_BATCH_RETRIEVE_REVISIONID = 32 def get_gitc_manifest_dir(): return wrapper.Wrapper().get_gitc_manifest_dir()