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

14 lines
273 B
Ruby
Raw Normal View History

# frozen_string_literal: true
##
# Concern for setting Sidekiq settings for the various CI pipeline workers.
#
module PipelineQueue
extend ActiveSupport::Concern
included do
2017-11-28 16:16:50 +00:00
queue_namespace :pipeline_default
feature_category :continuous_integration
end
end