2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
# This worker is deprecated and will be removed in 14.0
|
|
|
|
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/266381
|
2019-07-31 22:56:46 +05:30
|
|
|
module Deployments
|
2020-04-08 14:13:33 +05:30
|
|
|
class FinishedWorker # rubocop:disable Scalability/IdempotentWorker
|
2019-07-31 22:56:46 +05:30
|
|
|
include ApplicationWorker
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
sidekiq_options retry: 3
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
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
|
2019-07-31 22:56:46 +05:30
|
|
|
|
|
|
|
def perform(deployment_id)
|
2020-03-13 15:44:24 +05:30
|
|
|
if (deploy = Deployment.find_by_id(deployment_id))
|
|
|
|
LinkMergeRequestsService.new(deploy).execute
|
2021-06-08 01:23:25 +05:30
|
|
|
deploy.execute_hooks(Time.current)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
2019-07-31 22:56:46 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|