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