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