2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
12 lines
295 B
Ruby
12 lines
295 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BuildTraceSectionsWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def perform(build_id)
|
|
Ci::Build.find_by(id: build_id)&.parse_trace_sections!
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|