debian-mirror-gitlab/app/workers/concerns/build_queue.rb

9 lines
182 B
Ruby
Raw Normal View History

2016-11-03 12:29:30 +05:30
# Concern for setting Sidekiq settings for the various CI build workers.
module BuildQueue
extend ActiveSupport::Concern
included do
sidekiq_options queue: :build
end
end