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

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

Issue 1778153002: [Findit] Strip platform from step_name before triggering try job. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: address comments Created 4 years, 9 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
Index: appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
diff --git a/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py b/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
index d290bbfc52c978580dbd92ad18030af0f1f4603b..be8a60ccb0f4928baa0dd9b9d534cb16c1e5c04f 100644
--- a/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
+++ b/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
@@ -32,7 +32,8 @@ class SwarmingTasksToTryJobPipeline(BasePipeline):
task_id = yield TriggerSwarmingTaskPipeline(
master_name, builder_name, build_number, step_name, tests)
step_future = yield ProcessSwarmingTaskResultPipeline(
- master_name, builder_name, build_number, step_name, task_id)
+ master_name, builder_name, build_number, step_name,
+ task_id)
stgao 2016/03/10 23:50:28 Could be reverted?
chanli 2016/03/11 00:49:41 Missed... Done
classified_tests_by_step.append(step_future)
# Waits until classified_tests_by_step are ready.

Powered by Google App Engine
This is Rietveld 408576698