Welcome to mirror list, hosted at ThFree Co, Russian Federation.

kill_worker.rb « chaos « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80f04db1be403f68a5de3910f3e608efff0835ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Chaos
  class KillWorker
    include ApplicationWorker
    include ChaosQueue

    sidekiq_options retry: false

    def perform
      Gitlab::Chaos.kill
    end
  end
end