debian-mirror-gitlab/app/workers/chaos/leak_mem_worker.rb
2019-10-12 21:52:04 +05:30

13 lines
229 B
Ruby

# frozen_string_literal: true
module Chaos
class LeakMemWorker
include ApplicationWorker
include ChaosQueue
def perform(memory_mb, duration_s)
Gitlab::Chaos.leak_mem(memory_mb, duration_s)
end
end
end