gitlab-org--gitlab-foss/app/workers/chaos/kill_worker.rb
Valery Sizov f88189e23a Update reliable fetcher
We added retry_count increment when job is recovered
2019-08-06 03:23:30 +03:00

14 lines
210 B
Ruby

# frozen_string_literal: true
module Chaos
class KillWorker
include ApplicationWorker
include ChaosQueue
sidekiq_options retry: false
def perform
Gitlab::Chaos.kill
end
end
end