Merge "Fix floating IP associated to unbound port"

This commit is contained in:
Zuul 2024-08-14 23:13:42 +00:00 committed by Gerrit Code Review
commit 64e10e1893

View File

@ -248,9 +248,7 @@ def get_instance_info(fip):
'fixed_ip': fip.fixed_ip})
if fip.instance_type == 'loadbalancer':
return _("Load Balancer VIP %s") % fip.fixed_ip
if fip.instance_type:
return fip.fixed_ip
return None
return getattr(fip, 'fixed_ip', None)
def get_instance_link(datum):