summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildbot/validation_pool.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/buildbot/validation_pool.py b/buildbot/validation_pool.py
index 99b7809f2..52b7cf7e4 100644
--- a/buildbot/validation_pool.py
+++ b/buildbot/validation_pool.py
@@ -47,7 +47,10 @@ except ImportError:
PRE_CQ = 'pre-cq'
CQ = 'cq'
-SUBMITTED_WAIT_TIMEOUT = 120 # Time in seconds.
+
+# The gerrit-on-borg team tells us that delays up to 5 minutes can be
+# normal. Setting timeout to 7 minutes to be safe-ish.
+SUBMITTED_WAIT_TIMEOUT = 7 * 60 # Time in seconds.
class TreeIsClosedException(Exception):
"""Raised when the tree is closed and we wanted to submit changes."""