2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
16 lines
380 B
Ruby
16 lines
380 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BuildQueueWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
queue_namespace :pipeline_processing
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def perform(build_id)
|
|
Ci::Build.find_by(id: build_id).try do |build|
|
|
Ci::UpdateBuildQueueService.new.execute(build)
|
|
end
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|