repository_check_queue.rb 225 Bytes
Newer Older
1 2 3 4 5 6 7 8
# 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