bugfix: sync max frame size before packet MTU

This commit is contained in:
Pim van Pelt
2022-04-10 10:57:17 +00:00
parent a7545ac5af
commit 929fa7b546

View File

@ -1019,15 +1019,15 @@ class Reconciler():
if not self.sync_link_mtu_direction(shrink=False):
self.logger.warning("Could not sync growing interface Max Frame Size in VPP")
ret = False
if not self.sync_link_mtu_direction(shrink=True):
self.logger.warning("Could not sync shrinking interface Max Frame Size in VPP")
ret = False
if not self.sync_mtu_direction(shrink=True):
self.logger.warning("Could not sync shrinking interface MTU in VPP")
ret = False
if not self.sync_mtu_direction(shrink=False):
self.logger.warning("Could not sync growing interface MTU in VPP")
ret = False
if not self.sync_link_mtu_direction(shrink=True):
self.logger.warning("Could not sync shrinking interface Max Frame Size in VPP")
ret = False
return ret
def sync_addresses(self):