gitlab-org--gitlab-foss/app/workers/concerns/repository_check_queue.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
313 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Concern for setting Sidekiq settings for the various repository check workers.
module RepositoryCheckQueue
extend ActiveSupport::Concern
included do
2017-11-28 11:16:50 -05:00
queue_namespace :repository_check
sidekiq_options retry: false
feature_category :source_code_management
end
end