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

module Chaos
  class SleepWorker
    include ApplicationWorker
    include ChaosQueue

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