gitlab-org--gitlab-foss/app/workers/concerns/chaos_queue.rb

10 lines
134 B
Ruby
Raw Normal View History

# frozen_string_literal: true
#
module ChaosQueue
extend ActiveSupport::Concern
included do
queue_namespace :chaos
end
end