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
|
2021-06-08 01:23:25 +05:30
|
|
|
tags :exclude_from_kubernetes
|
2020-11-24 15:15:51 +05:30
|
|
|
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
|