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

Unified Diff: commit_queue.py

Issue 1587893003: git cl try: omit triggered bots from cq.cfg default list (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 4 years, 11 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: commit_queue.py
diff --git a/commit_queue.py b/commit_queue.py
index c950db68cdd6a290ea2a2434d38b97b16803b664..3f47ea4b0af1246305dc195f0f77b96004b77e57 100755
--- a/commit_queue.py
+++ b/commit_queue.py
@@ -117,7 +117,8 @@ def get_master_builder_map(config_path):
for bucket in config.verifiers.try_job.buckets:
masters.setdefault(bucket.name, [])
for builder in bucket.builders:
- if not builder.HasField('experiment_percentage'):
+ if (not builder.HasField('experiment_percentage') and
+ not builder.HasField('triggered_by')):
masters[bucket.name].append(builder.name)
return masters
« 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