gitlab-org--gitlab-foss/app/workers/concerns/repository_check_queue.rb
2018-06-27 01:12:01 -07:00

12 lines
269 B
Ruby

# frozen_string_literal: true
# Concern for setting Sidekiq settings for the various repository check workers.
module RepositoryCheckQueue
extend ActiveSupport::Concern
included do
queue_namespace :repository_check
sidekiq_options retry: false
end
end