summaryrefslogtreecommitdiff
path: root/app/workers/concerns/chaos_queue.rb
blob: 2ccd55157c621832c09807078040b60f35ef36a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true
#
module ChaosQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :chaos
    feature_category_not_owned!
    tags :exclude_from_gitlab_com
  end
end