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

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

    sidekiq_options retry: false

    def perform
      Gitlab::Chaos.kill
    end
  end
end