aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis A. Lozano <llozano@google.com>2018-08-08 12:03:43 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-08-08 20:46:07 -0700
commitf4799966c4c6639ffc619a02e3ccdd2a501379f9 (patch)
treeccbcd5a791cb7e0c14fbe84d09f3c0bd1e8440e5
parentcde23a8e45b6202ad39ea17999efa5fff1adfeba (diff)
downloadtoolchain-utils-f4799966c4c6639ffc619a02e3ccdd2a501379f9.tar.gz
Increase timeout for slower builders.
Some of our slower builder (with latest_toolchain) are taking around 8 hours. This CL increases the timeout for such situations. BUG=chromium:870916 TESTS=None Change-Id: I8c15e4ecbd71f76bca65c6adcabd74df8da79660 Reviewed-on: https://chromium-review.googlesource.com/1167965 Commit-Ready: Luis Lozano <llozano@chromium.org> Tested-by: Luis Lozano <llozano@chromium.org> Reviewed-by: Manoj Gupta <manojgupta@chromium.org>
-rw-r--r--cros_utils/buildbot_utils.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/cros_utils/buildbot_utils.py b/cros_utils/buildbot_utils.py
index f6fc60df..911ea03e 100644
--- a/cros_utils/buildbot_utils.py
+++ b/cros_utils/buildbot_utils.py
@@ -16,9 +16,10 @@ from cros_utils import logger
INITIAL_SLEEP_TIME = 7200 # 2 hours; wait time before polling buildbot.
SLEEP_TIME = 600 # 10 minutes; time between polling of buildbot.
-TIME_OUT = 28800 # Decide the build is dead or will never finish
-# after this time (8 hours).
+# Some of our slower builders (llmv-next) are taking more
+# than 8 hours. So, increase this TIME_OUT to 9 hours.
+TIME_OUT = 32400 # Decide the build is dead or will never finish
class BuildbotTimeout(Exception):