summaryrefslogtreecommitdiff
path: root/app/workers/concerns/pipeline_background_queue.rb
blob: bbb8ad0c982f07638b3bb12ee2dc78a9243b4d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

##
# 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