Merge "fix update on empty list of allowed address pairs"

This commit is contained in:
Zuul
2021-06-23 13:10:44 +00:00
committed by Gerrit Code Review

View File

@@ -339,6 +339,10 @@ class NetworkPortModule(OpenStackModule):
return True
for key in compare_list_dict:
if not self.params[key]:
if port[key]:
return True
if self.params[key]:
if not port[key]:
return True