debian-mirror-gitlab/app/workers/deployments/success_worker.rb

20 lines
440 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
module Deployments
class SuccessWorker
include ApplicationWorker
queue_namespace :deployment
2019-12-21 20:55:43 +05:30
feature_category :continuous_delivery
2019-12-26 22:10:19 +05:30
worker_resource_boundary :cpu
2018-12-13 13:39:08 +05:30
def perform(deployment_id)
Deployment.find_by_id(deployment_id).try do |deployment|
break unless deployment.success?
2019-12-21 20:55:43 +05:30
Deployments::AfterCreateService.new(deployment).execute
2018-12-13 13:39:08 +05:30
end
end
end
end