summaryrefslogtreecommitdiff
path: root/app/workers/concerns/pipeline_queue.rb
blob: e77093a690209599c0583de6333e8552f9a73265 (plain)
1
2
3
4
5
6
7
8
9
10
##
# Concern for setting Sidekiq settings for the various CI pipeline workers.
#
module PipelineQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :pipeline_default
  end
end