debian-mirror-gitlab/app/workers/pages_domain_removal_cron_worker.rb
2021-06-08 01:23:25 +05:30

20 lines
493 B
Ruby

# frozen_string_literal: true
class PagesDomainRemovalCronWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
sidekiq_options retry: 3
include CronjobQueue
feature_category :pages
worker_resource_boundary :cpu
def perform
PagesDomain.for_removal.with_logging_info.find_each do |domain|
with_context(project: domain.project) { domain.destroy! }
rescue StandardError => e
Gitlab::ErrorTracking.track_exception(e)
end
end
end