gitlab-org--gitlab-foss/app/workers/pages_domain_verification_w...

22 lines
427 B
Ruby

# frozen_string_literal: true
class PagesDomainVerificationWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
feature_category :pages
def perform(domain_id)
return if Gitlab::Database.read_only?
domain = PagesDomain.find_by_id(domain_id)
return unless domain
VerifyPagesDomainService.new(domain).execute
end
end