dc14c91d06
This allows the chaos endpoints to be invoked in Sidekiq so that this environment can be tested for resilience.
9 lines
134 B
Ruby
9 lines
134 B
Ruby
# frozen_string_literal: true
|
|
#
|
|
module ChaosQueue
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
queue_namespace :chaos
|
|
end
|
|
end
|