debian-mirror-gitlab/app/workers/concerns/repository_check_queue.rb
2018-03-17 18:26:18 +05:30

11 lines
238 B
Ruby

# 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