summaryrefslogtreecommitdiff
path: root/app/workers/pages_update_configuration_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/pages_update_configuration_worker.rb')
-rw-r--r--app/workers/pages_update_configuration_worker.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/workers/pages_update_configuration_worker.rb b/app/workers/pages_update_configuration_worker.rb
deleted file mode 100644
index 9c58b40e098..00000000000
--- a/app/workers/pages_update_configuration_worker.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-# TODO: remove this in 14.7 https://gitlab.com/gitlab-org/gitlab/-/issues/348582
-class PagesUpdateConfigurationWorker
- include ApplicationWorker
-
- data_consistency :always
-
- sidekiq_options retry: 1
-
- idempotent!
- feature_category :pages
-
- def perform(_project_id)
- # Do nothing
- end
-end