From: Tomas Sedovic Date: Thu, 19 Apr 2012 16:23:56 +0000 (+0200) Subject: Fix the EIP cleanup X-Git-Tag: 2014.1~1954 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=b1802fe7ab0458ca381fbc5214cbf27918bafd9c;p=openstack-build%2Fheat-build.git Fix the EIP cleanup Fixes #69 Signed-off-by: Tomas Sedovic --- diff --git a/heat/engine/resources.py b/heat/engine/resources.py index 7036ca27..afc1d31b 100644 --- a/heat/engine/resources.py +++ b/heat/engine/resources.py @@ -283,7 +283,6 @@ class SecurityGroup(Resource): class ElasticIp(Resource): def __init__(self, name, json_snippet, stack): super(ElasticIp, self).__init__(name, json_snippet, stack) - self.instance_id = '' self.ipaddress = '' if 'Domain' in self.t['Properties']: