diff options
author | Neale Ranns <nranns@cisco.com> | 2019-11-26 19:30:08 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-11-26 23:19:32 +0000 |
commit | 9efcee6e7babd49999af3e3dcd13ee33d0a4c02d (patch) | |
tree | f4efec603f8883044923127ecfbfe0d2c687b523 /test/vpp_ip_route.py | |
parent | acaa04a22dd8bade2eca944ddd8517961433a34f (diff) |
fib: Fix crash on cover update to non activated adj source
if the adj source is not active then there is no existing cover
during a cover update
Type: fix
Ticket: VPP-1803
Signed-off-by: Neale Ranns <nranns@cisco.com>
Change-Id: Ie912f1c99345de4fb012bdcd97b443098d4a7351
Diffstat (limited to 'test/vpp_ip_route.py')
-rw-r--r-- | test/vpp_ip_route.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/vpp_ip_route.py b/test/vpp_ip_route.py index 031412cc2fa..3ac0e84c58a 100644 --- a/test/vpp_ip_route.py +++ b/test/vpp_ip_route.py @@ -246,6 +246,7 @@ class VppIpInterfaceAddress(VppObject): sw_if_index=self.intf.sw_if_index, prefix=self.prefix, is_add=1) self._test.registry.register(self, self._test.logger) + return self def remove_vpp_config(self): self._test.vapi.sw_interface_add_del_address( |