mirror of
https://opendev.org/openstack/ansible-collections-openstack.git
synced 2026-03-27 05:53:02 +00:00
fix update on empty list of allowed address pairs
Story: 2008986 Task: 42636 Change-Id: I1a500673d870b706d9187ce9780fc72d3603bad9
This commit is contained in:
committed by
Shnaidman Sagi (Sergey)
parent
a89ec027b0
commit
72f371c157
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user