summaryrefslogtreecommitdiff
path: root/app/workers/concerns/repository_check_queue.rb
blob: a597321ccf45a217ee29d5a5a386c936eba684a1 (plain)
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