summaryrefslogtreecommitdiff
path: root/app/workers/concerns/repository_check_queue.rb
blob: 76f6e1c2e911f750e7d9bb85349abb33a833efe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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
    feature_category :source_code_management
  end
end