summaryrefslogtreecommitdiff
path: root/app/workers/pages_update_configuration_worker.rb
blob: 9c58b40e098507688985faaae55265d58ac9b33d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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