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

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

  included do
    sidekiq_options queue: :gcp_cluster
  end
end