16 lines
336 B
Ruby
16 lines
336 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Chaos
|
|
class DbSpinWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
|
|
data_consistency :always
|
|
|
|
sidekiq_options retry: 3
|
|
include ChaosQueue
|
|
|
|
def perform(duration_s, interval_s)
|
|
Gitlab::Chaos.db_spin(duration_s, interval_s)
|
|
end
|
|
end
|
|
end
|