Преглед изворни кода

Accounting for IPs attached to a NetInterface but no Instance

almahmoud пре 7 година
родитељ
комит
66fd4ad334
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      cloudbridge/cloud/providers/aws/resources.py

+ 1 - 1
cloudbridge/cloud/providers/aws/resources.py

@@ -1155,7 +1155,7 @@ class AWSFloatingIP(BaseFloatingIP):
 
     @property
     def in_use(self):
-        return True if self._ip.instance_id else False
+        return True if self._ip.association_id else False
 
     def delete(self):
         self._ip.release()