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.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/app/workers/pipeline_update_worker.rb b/app/workers/pipeline_update_worker.rb
deleted file mode 100644
index e8feb4f2db2..00000000000
--- a/app/workers/pipeline_update_worker.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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
-
- sidekiq_options retry: 3
- include PipelineQueue
-
- queue_namespace :pipeline_processing
- urgency :high
-
- idempotent!
-
- def perform(_pipeline_id)
- # no-op
- end
-end