debian-mirror-gitlab/app/workers/chaos/sleep_worker.rb

15 lines
279 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
module Chaos
2020-04-08 14:13:33 +05:30
class SleepWorker # rubocop:disable Scalability/IdempotentWorker
2019-10-12 21:52:04 +05:30
include ApplicationWorker
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2019-10-12 21:52:04 +05:30
include ChaosQueue
def perform(duration_s)
Gitlab::Chaos.sleep(duration_s)
end
end
end