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/workers/pipeline_update_worker.rb')
-rw-r--r--app/workers/pipeline_update_worker.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/workers/pipeline_update_worker.rb b/app/workers/pipeline_update_worker.rb
index 267caa5bedd..7db4ab8fe0b 100644
--- a/app/workers/pipeline_update_worker.rb
+++ b/app/workers/pipeline_update_worker.rb
@@ -1,5 +1,7 @@
# frozen_string_literal: true
+# This worker is deprecated and will be removed in 14.0
+# See: https://gitlab.com/gitlab-org/gitlab/-/issues/232806
class PipelineUpdateWorker
include ApplicationWorker
include PipelineQueue
@@ -9,7 +11,7 @@ class PipelineUpdateWorker
idempotent!
- def perform(pipeline_id)
- Ci::Pipeline.find_by_id(pipeline_id)&.update_legacy_status
+ def perform(_pipeline_id)
+ # no-op
end
end