gitlab-org--gitlab-foss/app/workers/chaos/sleep_worker.rb

15 lines
279 B
Ruby

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