summaryrefslogtreecommitdiff
path: root/app/workers/chaos/leak_mem_worker.rb
blob: b77d1a20541692a4d4526f37284ec8b719afd747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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