2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
# Concern for setting Sidekiq settings for the various repository check workers.
|
|
|
|
module RepositoryCheckQueue
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2018-03-17 18:26:18 +05:30
|
|
|
queue_namespace :repository_check
|
|
|
|
sidekiq_options retry: false
|
2019-12-21 20:55:43 +05:30
|
|
|
feature_category :source_code_management
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|