2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Chaos
|
2020-04-08 14:13:33 +05:30
|
|
|
class KillWorker # rubocop:disable Scalability/IdempotentWorker
|
2019-10-12 21:52:04 +05:30
|
|
|
include ApplicationWorker
|
2021-10-27 15:23:28 +05:30
|
|
|
|
|
|
|
data_consistency :always
|
2019-10-12 21:52:04 +05:30
|
|
|
include ChaosQueue
|
|
|
|
|
|
|
|
sidekiq_options retry: false
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
def perform(signal)
|
|
|
|
Gitlab::Chaos.kill(signal)
|
2019-10-12 21:52:04 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|