gitlab-org--gitlab-foss/app/workers/pipeline_hooks_worker.rb

21 lines
480 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class PipelineHooksWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
sidekiq_options retry: 3
include PipelineQueue
2016-10-12 11:44:33 +00:00
2017-11-28 16:16:50 +00:00
queue_namespace :pipeline_hooks
worker_resource_boundary :cpu
data_consistency :delayed
# rubocop: disable CodeReuse/ActiveRecord
2016-10-12 11:44:33 +00:00
def perform(pipeline_id)
Ci::Pipeline
.find_by(id: pipeline_id)
2016-10-12 11:44:33 +00:00
.try(:execute_hooks)
end
# rubocop: enable CodeReuse/ActiveRecord
2016-10-12 11:44:33 +00:00
end