7e87626acf
Partially addresses #47424.
12 lines
223 B
Ruby
12 lines
223 B
Ruby
# frozen_string_literal: true
|
|
|
|
##
|
|
# Concern for setting Sidekiq settings for the various Gcp clusters workers.
|
|
#
|
|
module ClusterQueue
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
queue_namespace :gcp_cluster
|
|
end
|
|
end
|