summaryrefslogtreecommitdiff
path: root/app/workers/pipeline_hooks_worker.rb
blob: c67f3860a50aa6f2bf92d12d9d12dfcebccb6047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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

  # rubocop: disable CodeReuse/ActiveRecord
  def perform(pipeline_id)
    pipeline = Ci::Pipeline.find_by(id: pipeline_id)
    return unless pipeline

    Ci::Pipelines::HookService.new(pipeline).execute
  end
  # rubocop: enable CodeReuse/ActiveRecord
end