18 lines
409 B
Ruby
18 lines
409 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Deployments
|
||
|
class ExecuteHooksWorker # rubocop:disable Scalability/IdempotentWorker
|
||
|
include ApplicationWorker
|
||
|
|
||
|
queue_namespace :deployment
|
||
|
feature_category :continuous_delivery
|
||
|
worker_resource_boundary :cpu
|
||
|
|
||
|
def perform(deployment_id)
|
||
|
if (deploy = Deployment.find_by_id(deployment_id))
|
||
|
deploy.execute_hooks
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|