| 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 912dd2f9df6762bd27efaabdfef46cbafdee0b65..ae220fe321732b315708e70b2bf8f02afc402b08 100644
|
| --- a/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
|
| +++ b/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
|
| @@ -20,7 +20,7 @@ class SwarmingTasksToTryJobPipeline(BasePipeline):
|
| def run(
|
| self, master_name, builder_name, build_number, good_revision,
|
| bad_revision, blame_list, try_job_type, compile_targets=None,
|
| - targeted_tests=None, suspected_cls=None):
|
| + targeted_tests=None, suspected_cls=None, force_try_job_rerun=False):
|
|
|
| # A list contains tuples of step_names and classified_tests from
|
| # ProcessSwarmingTaskResultPipeline.
|
| @@ -41,8 +41,8 @@ class SwarmingTasksToTryJobPipeline(BasePipeline):
|
| logging.info(logging_str)
|
| classified_tests_by_step.append(step_future)
|
|
|
| - # Waits until classified_tests_by_step are ready.
|
| + # Waits until classified_tests_by_step are ready.
|
| yield RunTryJobForReliableFailurePipeline(
|
| master_name, builder_name, build_number, good_revision,
|
| bad_revision, blame_list, try_job_type, compile_targets, targeted_tests,
|
| - suspected_cls, *classified_tests_by_step)
|
| + suspected_cls, force_try_job_rerun, *classified_tests_by_step)
|
|
|