debian-mirror-gitlab/app/workers/concerns/chaos_queue.rb

11 lines
166 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
#
module ChaosQueue
extend ActiveSupport::Concern
included do
queue_namespace :chaos
2020-05-24 23:13:21 +05:30
feature_category_not_owned!
2019-10-12 21:52:04 +05:30
end
end