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

cpu_spin_worker.rb « chaos « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8900abc764c3b6aeb28be4e7f8ff6f6eebd6679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Chaos
  class CpuSpinWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    sidekiq_options retry: 3
    include ChaosQueue

    def perform(duration_s)
      Gitlab::Chaos.cpu_spin(duration_s)
    end
  end
end