debian-mirror-gitlab/app/workers/chaos/sleep_worker.rb
2021-10-27 15:23:28 +05:30

16 lines
309 B
Ruby

# frozen_string_literal: true
module Chaos
class SleepWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include ChaosQueue
def perform(duration_s)
Gitlab::Chaos.sleep(duration_s)
end
end
end