debian-mirror-gitlab/app/workers/pages_transfer_worker.rb

25 lines
686 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
class PagesTransferWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2020-11-24 15:15:51 +05:30
TransferFailedError = Class.new(StandardError)
feature_category :pages
loggable_arguments 0, 1
def perform(method, args)
2021-03-11 19:13:27 +05:30
return unless Gitlab::PagesTransfer::METHODS.include?(method)
2020-11-24 15:15:51 +05:30
result = Gitlab::PagesTransfer.new.public_send(method, *args) # rubocop:disable GitlabSecurity/PublicSend
# If result isn't truthy, the move failed. Promote this to an
# exception so that it will be logged and retried appropriately
raise TransferFailedError unless result
end
end