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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
488 B
Ruby
Raw Permalink 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
2016-10-12 11:44:33 +00:00
def perform(pipeline_id)
pipeline = Ci::Pipeline.find_by_id(pipeline_id)
return unless pipeline
return if pipeline.user&.blocked?
Ci::Pipelines::HookService.new(pipeline).execute
2016-10-12 11:44:33 +00:00
end
end