2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
14 lines
341 B
Ruby
14 lines
341 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|
|
|
job.trace.archive!
|
|
end
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|