summaryrefslogtreecommitdiff
path: root/app/workers/update_container_registry_info_worker.rb
blob: 14a816f25ef0aaa58d229fd6969508b38eb434ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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