fix update on empty list of allowed address pairs

Story: 2008986
Task: 42636
Change-Id: I1a500673d870b706d9187ce9780fc72d3603bad9
This commit is contained in:
Jan Hartkopf 2021-06-17 13:59:39 +02:00 committed by Shnaidman Sagi (Sergey)
parent a89ec027b0
commit 72f371c157
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