14 lines
273 B
Ruby
14 lines
273 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Chaos
|
|
class KillWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
include ChaosQueue
|
|
|
|
sidekiq_options retry: false
|
|
|
|
def perform(signal)
|
|
Gitlab::Chaos.kill(signal)
|
|
end
|
|
end
|
|
end
|