17 lines
433 B
Ruby
17 lines
433 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PipelineHooksWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
queue_namespace :pipeline_hooks
|
|
urgency :high
|
|
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
|