22 lines
538 B
Ruby
22 lines
538 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PagesDomainVerificationWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
|
|
sidekiq_options retry: 3
|
|
|
|
feature_category :pages
|
|
tags :requires_disk_io, :exclude_from_kubernetes
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
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
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|