debian-mirror-gitlab/app/workers/update_container_registry_info_worker.rb
2021-10-27 15:23:28 +05:30

19 lines
345 B
Ruby

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