20 lines
577 B
Ruby
20 lines
577 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, feature_flag: :load_balancing_for_pipeline_hooks_worker
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def perform(pipeline_id)
|
|
Ci::Pipeline.includes({ builds: { runner: :tags } })
|
|
.find_by(id: pipeline_id)
|
|
.try(:execute_hooks)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|