13 lines
273 B
Ruby
13 lines
273 B
Ruby
# frozen_string_literal: true
|
|
|
|
##
|
|
# Concern for setting Sidekiq settings for the various CI pipeline workers.
|
|
#
|
|
module PipelineQueue
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
queue_namespace :pipeline_default
|
|
feature_category :continuous_integration
|
|
end
|
|
end
|