debian-mirror-gitlab/app/workers/chaos/sleep_worker.rb
2020-04-08 14:13:33 +05:30

13 lines
249 B
Ruby

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