From 9e45c74fc1430342f84e5d63e842c7a093063613 Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Mon, 11 Dec 2017 09:02:02 +0100 Subject: Do not use createVrfIfNeeded of IpAddDelRoute It was not used by VPP, recently removed by: https://gerrit.fd.io/r/#/c/9771/ Change-Id: Ic838e4daf95a98d675b3f0fda6e5fad242eb5bbd Signed-off-by: Marek Gradzki --- .../java/io/fd/hc2vpp/routing/write/trait/RouteRequestProducer.java | 3 --- 1 file changed, 3 deletions(-) (limited to 'routing/routing-impl/src/main') diff --git a/routing/routing-impl/src/main/java/io/fd/hc2vpp/routing/write/trait/RouteRequestProducer.java b/routing/routing-impl/src/main/java/io/fd/hc2vpp/routing/write/trait/RouteRequestProducer.java index 0b2c41179..80b4b8f79 100644 --- a/routing/routing-impl/src/main/java/io/fd/hc2vpp/routing/write/trait/RouteRequestProducer.java +++ b/routing/routing-impl/src/main/java/io/fd/hc2vpp/routing/write/trait/RouteRequestProducer.java @@ -125,9 +125,6 @@ public interface RouteRequestProducer extends ByteDataTranslator, AddressTransla // vrf_id - fib table /vrf associated with the route Not mentioned in model request.tableId = primaryVrf; - // create vrf if needed needs to be turned on all the time,due to how we map table ids on routing protocols - request.createVrfIfNeeded = 1; - // nextHopTableId - this is used when you want to have a second lookup done in another table. request.nextHopTableId = secondaryVrf; -- cgit 1.2.3-korg