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

chaos_queue.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9c557f0175760a443f2a81124c932f67484d17e (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
#
module ChaosQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :chaos
    feature_category_not_owned!
  end
end