Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(572)

Unified Diff: masters/master.tryserver.chromium.linux/master.cfg

Issue 2128843002: tryserver.chromium.linux: disable time-without-output timeout when build timeout is used (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.tryserver.chromium.linux/master.cfg
diff --git a/masters/master.tryserver.chromium.linux/master.cfg b/masters/master.tryserver.chromium.linux/master.cfg
index 795a3e673a6481ce222383164f455dfba857a4c4..c76f9dafdc71c902441fcc14bd500fbf1fe53db8 100644
--- a/masters/master.tryserver.chromium.linux/master.cfg
+++ b/masters/master.tryserver.chromium.linux/master.cfg
@@ -57,6 +57,12 @@ def baseFactory(recipe, factory_properties=None, **kwargs):
fp.update({
'$recipe_engine': {'mode_flags': {'use_subprocess42': True}}
})
+
+ # Disable "max time without output" timeout if total build timeout
+ # is in effect.
+ if 'max_time' in kwargs and 'timeout' not in kwargs:
Sergiy Byelozyorov 2016/07/08 08:20:43 The comment and statement is confusing. Comment sa
+ kwargs['timeout'] = None
+
return m_annotator.BaseFactory(recipe, factory_properties=fp, **kwargs)
for targ in ('_rel', '_dbg'):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698