summaryrefslogtreecommitdiff
path: root/app/workers/chaos/sleep_worker.rb
blob: 149bab5d9d3cfaf58cdf1cad02cc46c8ad34dec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Chaos
  class SleepWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    data_consistency :always

    sidekiq_options retry: 3
    include ChaosQueue

    def perform(duration_s)
      Gitlab::Chaos.sleep(duration_s)
    end
  end
end