bugfix: sync max frame size before packet MTU
This commit is contained in:
@ -1019,15 +1019,15 @@ class Reconciler():
|
|||||||
if not self.sync_link_mtu_direction(shrink=False):
|
if not self.sync_link_mtu_direction(shrink=False):
|
||||||
self.logger.warning("Could not sync growing interface Max Frame Size in VPP")
|
self.logger.warning("Could not sync growing interface Max Frame Size in VPP")
|
||||||
ret = False
|
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):
|
if not self.sync_mtu_direction(shrink=True):
|
||||||
self.logger.warning("Could not sync shrinking interface MTU in VPP")
|
self.logger.warning("Could not sync shrinking interface MTU in VPP")
|
||||||
ret = False
|
ret = False
|
||||||
if not self.sync_mtu_direction(shrink=False):
|
if not self.sync_mtu_direction(shrink=False):
|
||||||
self.logger.warning("Could not sync growing interface MTU in VPP")
|
self.logger.warning("Could not sync growing interface MTU in VPP")
|
||||||
ret = False
|
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
|
return ret
|
||||||
|
|
||||||
def sync_addresses(self):
|
def sync_addresses(self):
|
||||||
|
Reference in New Issue
Block a user