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

  included do
    sidekiq_options queue: :pipeline
  end
end