Files
gitlab-foss/app/workers/update_container_registry_info_worker.rb
2020-07-13 12:09:18 +00:00

16 lines
316 B
Ruby

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