diff options
Diffstat (limited to 'app/services/ci')
-rw-r--r-- | app/services/ci/pipeline_processing/legacy_processing_service.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/ci/pipeline_processing/legacy_processing_service.rb b/app/services/ci/pipeline_processing/legacy_processing_service.rb index 278fba20283..8d7b80282fc 100644 --- a/app/services/ci/pipeline_processing/legacy_processing_service.rb +++ b/app/services/ci/pipeline_processing/legacy_processing_service.rb @@ -89,11 +89,11 @@ module Ci end def status_for_prior_stages(index) - pipeline.processables.status_for_prior_stages(index) + pipeline.processables.status_for_prior_stages(index, project: pipeline.project) end def status_for_build_needs(needs) - pipeline.processables.status_for_names(needs) + pipeline.processables.status_for_names(needs, project: pipeline.project) end # rubocop: disable CodeReuse/ActiveRecord |