Update ce_ospf to fix bugs (#61684)

pull/61013/merge
yanzhangi 5 years ago committed by ansibot
parent e1ca38e53a
commit 9d9863fec1

@ -514,9 +514,6 @@ class OSPF(object):
for network in area.get("networks"):
if network["ipAddress"] == self.addr and network["wildcardMask"] == self.get_wildcard_mask():
return True
else:
break
return False
def is_nexthop_exist(self):
@ -890,7 +887,8 @@ class OSPF(object):
self.end_state["max_load_balance"] = ospf_info.get("maxLoadBalancing")
if self.end_state == self.existing:
self.changed = False
if not self.auth_text_simple and not self.auth_text_md5:
self.changed = False
def work(self):
"""worker"""

Loading…
Cancel
Save