debian-mirror-gitlab/app/workers/pipeline_hooks_worker.rb
2021-12-11 22:18:48 +05:30

19 lines
450 B
Ruby

# frozen_string_literal: true
class PipelineHooksWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
sidekiq_options retry: 3
include PipelineQueue
queue_namespace :pipeline_hooks
worker_resource_boundary :cpu
data_consistency :delayed
def perform(pipeline_id)
pipeline = Ci::Pipeline.find_by_id(pipeline_id)
return unless pipeline
Ci::Pipelines::HookService.new(pipeline).execute
end
end