| 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,
|
| },
|
|
|