gitlab-org--gitlab-foss/app/workers/update_container_registry_i...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
345 B
Ruby
Raw Permalink Normal View History

# 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