2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Chaos
|
2020-04-08 14:13:33 +05:30
|
|
|
class CpuSpinWorker # rubocop:disable Scalability/IdempotentWorker
|
2019-10-12 21:52:04 +05:30
|
|
|
include ApplicationWorker
|
|
|
|
include ChaosQueue
|
|
|
|
|
|
|
|
def perform(duration_s)
|
|
|
|
Gitlab::Chaos.cpu_spin(duration_s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|