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

class ArchiveTraceWorker
  include ApplicationWorker
  include PipelineBackgroundQueue

  # rubocop: disable CodeReuse/ActiveRecord
  def perform(job_id)
    Ci::Build.without_archived_trace.find_by(id: job_id).try do |job|
      Ci::ArchiveTraceService.new.execute(job)
    end
  end
  # rubocop: enable CodeReuse/ActiveRecord
end