debian-mirror-gitlab/app/workers/concerns/repository_check_queue.rb
2016-11-03 12:29:30 +05:30

9 lines
225 B
Ruby

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