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: 9a3d518dda89a458be5db8451f3c0102f57f56b9 (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 # rubocop:todo Gitlab/AvoidFeatureCategoryNotOwned
  end
end