Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pages_transfer_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d3918e7ab67d0e0adcdc1c412a1aeae44be637e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class PagesTransferWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker

  data_consistency :always

  sidekiq_options retry: 3

  TransferFailedError = Class.new(StandardError)

  feature_category :pages
  loggable_arguments 0, 1

  def perform(method, args)
    # noop
    # This worker is not necessary anymore and will be removed
    # https://gitlab.com/gitlab-org/gitlab/-/issues/340616
  end
end