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

21 lines
526 B
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
module Deployments
2021-06-08 01:23:25 +05:30
# TODO: remove in https://gitlab.com/gitlab-org/gitlab/-/issues/329360
2021-01-03 14:25:43 +05:30
class ExecuteHooksWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2021-01-03 14:25:43 +05:30
queue_namespace :deployment
feature_category :continuous_delivery
worker_resource_boundary :cpu
def perform(deployment_id)
if (deploy = Deployment.find_by_id(deployment_id))
2021-06-08 01:23:25 +05:30
deploy.execute_hooks(Time.current)
2021-01-03 14:25:43 +05:30
end
end
end
end