Go back to passing if exception

Validation already happened and the set happens again later.
This commit is contained in:
Joshua Boniface 2021-10-12 14:21:52 -04:00
parent fe73dfbdc9
commit b8204d89ac
1 changed files with 2 additions and 4 deletions

View File

@ -110,8 +110,7 @@ class VXNetworkInstance(object):
self.validateNetworkMTU()
self.updateNetworkMTU()
except Exception:
self.validateNetworkMTU()
self.updateNetworkMTU()
pass
self.createNetworkBridged()
@ -256,8 +255,7 @@ add rule inet filter forward ip6 saddr {netaddr6} counter jump {vxlannic}-out
self.validateNetworkMTU()
self.updateNetworkMTU()
except Exception:
self.validateNetworkMTU()
self.updateNetworkMTU()
pass
@self.zkhandler.zk_conn.DataWatch(self.zkhandler.schema.path('network.ip6.network', self.vni))
def watch_network_ip6_network(data, stat, event=''):