Remove sub-ints before VXLANs. Report on interfaces thare are deleted before their addresses are.

This commit is contained in:
Pim van Pelt
2022-03-25 23:20:57 +00:00
parent 661c7fc16c
commit d5a7c59f4e
2 changed files with 5 additions and 3 deletions

@ -66,12 +66,12 @@ class Reconciler():
if not self.prune_l2xcs():
self.logger.warning("Could not prune L2 Cross Connects from VPP")
ret = False
if not self.prune_vxlan_tunnels():
self.logger.warning("Could not prune VXLAN Tunnels from VPP")
ret = False
if not self.prune_sub_interfaces():
self.logger.warning("Could not prune sub-interfaces from VPP")
ret = False
if not self.prune_vxlan_tunnels():
self.logger.warning("Could not prune VXLAN Tunnels from VPP")
ret = False
if not self.prune_bondethernets():
self.logger.warning("Could not prune BondEthernets from VPP")
ret = False