Files
gitlabhq/app/workers/concerns/pipeline_background_queue.rb
2019-10-18 11:11:44 +00:00

14 lines
291 B
Ruby

# frozen_string_literal: true
##
# Concern for setting Sidekiq settings for the low priority CI pipeline workers.
#
module PipelineBackgroundQueue
extend ActiveSupport::Concern
included do
queue_namespace :pipeline_background
feature_category :continuous_integration
end
end