diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-12-11 09:02:02 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-12-11 10:10:38 +0100 |
commit | 9e45c74fc1430342f84e5d63e842c7a093063613 (patch) | |
tree | e6dc2c63e621e4c68b7c52adbdadeb89e21cbefb /routing/routing-impl/src/main/java/io/fd | |
parent | 1d3af1a3e8f1e51be846190a259cb03c60f7de3c (diff) |
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 <mgradzki@cisco.com>
Diffstat (limited to 'routing/routing-impl/src/main/java/io/fd')
-rw-r--r-- | routing/routing-impl/src/main/java/io/fd/hc2vpp/routing/write/trait/RouteRequestProducer.java | 3 |
1 files changed, 0 insertions, 3 deletions
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; |