debian-mirror-gitlab/app/workers/environments/auto_stop_worker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
465 B
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# 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|
2022-06-21 17:19:12 +05:30
stop_actions = environment.stop_actions
user = stop_actions.last&.user
environment.stop_with_actions!(user)
2021-11-11 11:23:49 +05:30
end
end
end
end