gitlab-org--gitlab-foss/app/workers/chaos/kill_worker.rb

13 lines
176 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Chaos
class KillWorker
include ApplicationWorker
include ChaosQueue
def perform
Gitlab::Chaos.kill
end
end
end