summaryrefslogtreecommitdiff
path: root/app/workers/deployments/success_worker.rb
blob: da517f3fb2622ea2204d83c7c7a2b40b4d5242b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Deployments
  class SuccessWorker
    include ApplicationWorker

    queue_namespace :deployment

    def perform(deployment_id)
      Deployment.find_by_id(deployment_id).try do |deployment|
        break unless deployment.success?

        UpdateDeploymentService.new(deployment).execute
      end
    end
  end
end