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

auto_stop_worker.rb « environments « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 672a4f4121edd7872f42fedea752f121c04c197d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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|
        user = environment.stop_action&.user
        environment.stop_with_action!(user)
      end
    end
  end
end