Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_background_queue.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a23780b8073e3c8b2b433d84f8231c6f0964178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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
    feature_category :continuous_integration
  end
end