2018-06-27 03:31:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-06 06:20:36 -05:00
|
|
|
##
|
|
|
|
# Concern for setting Sidekiq settings for the low priority CI pipeline workers.
|
|
|
|
#
|
|
|
|
module PipelineBackgroundQueue
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
queue_namespace :pipeline_background
|
2019-10-18 07:11:44 -04:00
|
|
|
feature_category :continuous_integration
|
2018-03-06 06:20:36 -05:00
|
|
|
end
|
|
|
|
end
|