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

stop_job_success_worker.rb « environments « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc7d83512f393d07bed84a69667184e6a3f1dbde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Environments
  class StopJobSuccessWorker
    include ApplicationWorker

    data_consistency :delayed
    idempotent!
    feature_category :continuous_delivery

    def perform(job_id, _params = {})
      Ci::Build.find_by_id(job_id).try do |build|
        stop_environment(build) if build.stops_environment? && build.stop_action_successful?
      end
    end

    private

    def stop_environment(build)
      build.persisted_environment.fire_state_event(:stop_complete)
    end
  end
end