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

class PipelineProcessWorker
  include ApplicationWorker
  include PipelineQueue

  queue_namespace :pipeline_processing

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