dc14c91d06
This allows the chaos endpoints to be invoked in Sidekiq so that this environment can be tested for resilience.
12 lines
176 B
Ruby
12 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Chaos
|
|
class KillWorker
|
|
include ApplicationWorker
|
|
include ChaosQueue
|
|
|
|
def perform
|
|
Gitlab::Chaos.kill
|
|
end
|
|
end
|
|
end
|