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
commit f376d4679e
1 changed files with 4 additions and 0 deletions

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