Welcome to mirror list, hosted at ThFree Co, Russian Federation.

repository_check_queue.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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