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: 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