summaryrefslogtreecommitdiff
path: root/app/workers/delete_container_repository_worker.rb
blob: d0552dce9fc5c1819d7d6a8b9e375cdf7fc50950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class DeleteContainerRepositoryWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker
  include ExclusiveLeaseGuard

  data_consistency :always

  sidekiq_options retry: 3

  queue_namespace :container_repository
  feature_category :container_registry

  def perform(current_user_id, container_repository_id); end
end