c2e0e689f3
Often live traces are removed even though the archived trace doesn't exist. This commit checkes the existence strictly.
14 lines
393 B
Ruby
14 lines
393 B
Ruby
# 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, worker_name: self.class.name)
|
|
end
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|