gitlab-ce/app/workers/environments/auto_stop_worker.rb

18 lines
420 B
Ruby

# frozen_string_literal: true
module Environments
class AutoStopWorker
include ApplicationWorker
data_consistency :always
idempotent!
feature_category :continuous_delivery
def perform(environment_id, params = {})
Environment.find_by_id(environment_id).try do |environment|
Environments::StopService.new(environment.project).unsafe_execute!(environment)
end
end
end
end