summaryrefslogtreecommitdiff
path: root/app/workers/pipeline_hooks_worker.rb
blob: 04abc9c88fd11ffff29c7bc4848040a52ec0cf25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class PipelineHooksWorker
  include ApplicationWorker
  include PipelineQueue

  queue_namespace :pipeline_hooks
  latency_sensitive_worker!
  worker_resource_boundary :cpu

  # rubocop: disable CodeReuse/ActiveRecord
  def perform(pipeline_id)
    Ci::Pipeline.find_by(id: pipeline_id)
      .try(:execute_hooks)
  end
  # rubocop: enable CodeReuse/ActiveRecord
end