Welcome to mirror list, hosted at ThFree Co, Russian Federation.

leak_mem_worker.rb « chaos « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0caa99e0de99ffa5c5eb2cce57335d2dda6826c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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