Merge "Stabilize test_z99_reboot_controller_galera_main_vip"

This commit is contained in:
Zuul 2023-08-11 10:23:24 +00:00 committed by Gerrit Code Review
commit 803b230905

View File

@ -360,7 +360,8 @@ def check_no_duplicate_ips(vms_detailed_info, ports_before_stack_creation):
# try to obtain the port associated to a VM from neutron if the VM
# exists but vms_detailed_info does not show the port
if not addresses and vm is not None:
ports = neutron.list_ports(device_id=vm['id'])
ports = neutron.list_ports(device_id=vm['id'],
device_owner="compute:nova")
test_case.assertLess(len(ports), 2)
for port in ports:
addresses[port['network_id']] = port['fixed_ips']