Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_queue.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca3860e1d389d2a77dac12adb345e19b5bfe4990 (plain)
1
2
3
4
5
6
7
8
# Concern for setting Sidekiq settings for the various CI pipeline workers.
module PipelineQueue
  extend ActiveSupport::Concern

  included do
    sidekiq_options queue: :pipeline
  end
end