2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
##
|
|
|
|
# Concern for setting Sidekiq settings for the low priority CI pipeline workers.
|
|
|
|
#
|
|
|
|
module PipelineBackgroundQueue
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
queue_namespace :pipeline_background
|
2019-12-21 20:55:43 +05:30
|
|
|
feature_category :continuous_integration
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
end
|