gitlab-org--gitlab-foss/app/workers/chaos/sleep_worker.rb
Andrew Newdigate dc14c91d06 Adds chaos endpoints to Sidekiq
This allows the chaos endpoints to be invoked in Sidekiq so that this
environment can be tested for resilience.
2019-07-18 19:04:12 +02:00

12 lines
202 B
Ruby

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