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

Unified Diff: appengine/findit/waterfall/schedule_try_job_pipeline.py

Issue 2005123002: [Findit] Fixing argument order causing exceptions (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 7 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: appengine/findit/waterfall/schedule_try_job_pipeline.py
diff --git a/appengine/findit/waterfall/schedule_try_job_pipeline.py b/appengine/findit/waterfall/schedule_try_job_pipeline.py
index 44971c500e67b5ef85c7f8be71fabcd726217eaa..77b4ccebc5289c8602857ead4d874951ce35a754 100644
--- a/appengine/findit/waterfall/schedule_try_job_pipeline.py
+++ b/appengine/findit/waterfall/schedule_try_job_pipeline.py
@@ -58,8 +58,8 @@ class ScheduleTryJobPipeline(BasePipeline):
additional_parameters = {'tests': targeted_tests}
try_job = buildbucket_client.TryJob(
- tryserver_mastername, tryserver_buildername, None, properties,
- additional_parameters, [])
+ tryserver_mastername, tryserver_buildername, None, properties, [],
+ additional_parameters)
error, build = buildbucket_client.TriggerTryJobs([try_job])[0]
if error: # pragma: no cover
« 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