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

Unified Diff: git_cl.py

Issue 1349343004: git-cl-try: fix "revision" property (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 5 years, 3 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: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index de80a9f367aefbf92ee5584df1d61cecce4762e3..aef7c4ff93c0738a74e4a2d81fd1d16934208249 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -267,9 +267,10 @@ def trigger_try_jobs(auth_config, changelist, options, masters, category):
print_text.append(' %s: %s' % (builder, tests))
parameters = {
'builder_name': builder,
- 'changes': [
- {'author': {'email': issue_props['owner_email']}},
- ],
+ 'changes': [{
+ 'author': {'email': issue_props['owner_email']},
+ 'revision': options.revision,
+ }],
'properties': {
'category': category,
'issue': issue,
@@ -278,7 +279,6 @@ def trigger_try_jobs(auth_config, changelist, options, masters, category):
'patch_storage': 'rietveld',
'patchset': patchset,
'reason': options.name,
- 'revision': options.revision,
'rietveld': rietveld_url,
'testfilter': tests,
},
« 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