debian-mirror-gitlab/app/workers/chaos/sleep_worker.rb
2021-06-08 01:23:25 +05:30

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