9 lines
191 B
Ruby
9 lines
191 B
Ruby
|
# Concern for setting Sidekiq settings for the various CI pipeline workers.
|
||
|
module PipelineQueue
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
sidekiq_options queue: :pipeline
|
||
|
end
|
||
|
end
|