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

13 lines
276 B
Ruby

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