Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/ci/ref.rb')
-rw-r--r--app/models/ci/ref.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/models/ci/ref.rb b/app/models/ci/ref.rb
index a54d0b1d1db..8655e8eb9b8 100644
--- a/app/models/ci/ref.rb
+++ b/app/models/ci/ref.rb
@@ -36,11 +36,7 @@ module Ci
next unless ci_ref.artifacts_locked?
ci_ref.run_after_commit do
- if Feature.enabled?(:ci_unlock_pipelines_queue, ci_ref.project)
- Ci::Refs::UnlockPreviousPipelinesWorker.perform_async(ci_ref.id)
- else
- Ci::PipelineSuccessUnlockArtifactsWorker.perform_async(ci_ref.last_finished_pipeline_id)
- end
+ Ci::Refs::UnlockPreviousPipelinesWorker.perform_async(ci_ref.id)
end
end
end