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

11 lines
197 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
##
2016-11-03 12:29:30 +05:30
# Concern for setting Sidekiq settings for the various CI pipeline workers.
2018-03-17 18:26:18 +05:30
#
2016-11-03 12:29:30 +05:30
module PipelineQueue
extend ActiveSupport::Concern
included do
2018-03-17 18:26:18 +05:30
queue_namespace :pipeline_default
2016-11-03 12:29:30 +05:30
end
end