20 lines
536 B
Ruby
20 lines
536 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class ArchiveTraceWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
|
|
data_consistency :always
|
|
|
|
sidekiq_options retry: 3
|
|
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, worker_name: self.class.name)
|
|
end
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|
|
end
|