debian-mirror-gitlab/app/workers/concerns/pipeline_background_queue.rb

11 lines
215 B
Ruby
Raw Normal View History

2018-03-27 19:54:05 +05:30
##
# Concern for setting Sidekiq settings for the low priority CI pipeline workers.
#
module PipelineBackgroundQueue
extend ActiveSupport::Concern
included do
queue_namespace :pipeline_background
end
end