mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-03 16:37:48 +00:00
19 lines
345 B
Ruby
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
|