debian-mirror-gitlab/app/workers/pages_remove_worker.rb
2021-11-11 11:23:49 +05:30

16 lines
364 B
Ruby

# frozen_string_literal: true
# TODO: remove this worker https://gitlab.com/gitlab-org/gitlab/-/issues/340641
class PagesRemoveWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
feature_category :pages
loggable_arguments 0
def perform(project_id)
# no-op
end
end