2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-19 13:09:10 -05:00
|
|
|
class PipelineHooksWorker # rubocop:disable Scalability/IdempotentWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2021-04-30 14:10:09 -04:00
|
|
|
|
|
|
|
sidekiq_options retry: 3
|
2016-10-21 12:13:41 -04:00
|
|
|
include PipelineQueue
|
2016-10-12 07:44:33 -04:00
|
|
|
|
2017-11-28 11:16:50 -05:00
|
|
|
queue_namespace :pipeline_hooks
|
2019-10-30 11:14:17 -04:00
|
|
|
worker_resource_boundary :cpu
|
2021-06-17 14:10:22 -04:00
|
|
|
data_consistency :delayed
|
2017-08-21 08:02:20 -04:00
|
|
|
|
2016-10-12 07:44:33 -04:00
|
|
|
def perform(pipeline_id)
|
2021-11-10 10:13:21 -05:00
|
|
|
pipeline = Ci::Pipeline.find_by_id(pipeline_id)
|
2021-10-08 08:11:10 -04:00
|
|
|
return unless pipeline
|
|
|
|
|
|
|
|
Ci::Pipelines::HookService.new(pipeline).execute
|
2016-10-12 07:44:33 -04:00
|
|
|
end
|
|
|
|
end
|