summaryrefslogtreecommitdiff
path: root/app/workers/ci/drop_pipeline_worker.rb
blob: f3672dba3fe42d57c89ca7bb1d821f9dd6a643f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Ci
  class DropPipelineWorker
    include ApplicationWorker

    data_consistency :always

    sidekiq_options retry: 3
    include PipelineQueue

    tags :exclude_from_kubernetes

    idempotent!

    def perform(pipeline_id, failure_reason)
      Ci::Pipeline.find_by_id(pipeline_id).try do |pipeline|
        Ci::DropPipelineService.new.execute(pipeline, failure_reason.to_sym)
      end
    end
  end
end