From f4799966c4c6639ffc619a02e3ccdd2a501379f9 Mon Sep 17 00:00:00 2001 From: "Luis A. Lozano" Date: Wed, 8 Aug 2018 12:03:43 -0700 Subject: 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 Tested-by: Luis Lozano Reviewed-by: Manoj Gupta --- cros_utils/buildbot_utils.py | 5 +++-- 1 file 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): -- cgit v1.2.3