Merge "Hide attach fip if already fip attached"
This commit is contained in:
commit
29ef0549a3
@ -557,6 +557,10 @@ class AssociateIP(policy.PolicyTargetMixin, tables.LinkAction):
|
|||||||
return False
|
return False
|
||||||
if instance.status == "ERROR":
|
if instance.status == "ERROR":
|
||||||
return False
|
return False
|
||||||
|
for addresses in instance.addresses.values():
|
||||||
|
for address in addresses:
|
||||||
|
if address.get('OS-EXT-IPS:type') == "floating":
|
||||||
|
return False
|
||||||
return not is_deleting(instance)
|
return not is_deleting(instance)
|
||||||
|
|
||||||
def get_link_url(self, datum):
|
def get_link_url(self, datum):
|
||||||
|
Loading…
Reference in New Issue
Block a user