summaryrefslogtreecommitdiff
path: root/app/workers/concerns/chaos_queue.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/concerns/chaos_queue.rb')
-rw-r--r--app/workers/concerns/chaos_queue.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/workers/concerns/chaos_queue.rb b/app/workers/concerns/chaos_queue.rb
new file mode 100644
index 00000000000..e406509d12d
--- /dev/null
+++ b/app/workers/concerns/chaos_queue.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+#
+module ChaosQueue
+ extend ActiveSupport::Concern
+
+ included do
+ queue_namespace :chaos
+ end
+end