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

18 lines
344 B
Ruby

# frozen_string_literal: true
class UpdateContainerRegistryInfoWorker
include ApplicationWorker
sidekiq_options retry: 3
include CronjobQueue # rubocop:disable Scalability/CronWorkerContext
feature_category :container_registry
urgency :low
idempotent!
def perform
UpdateContainerRegistryInfoService.new.execute
end
end