diff --git a/heat/engine/resources.py b/heat/engine/resources.py index 6532445220..817dd0e067 100644 --- a/heat/engine/resources.py +++ b/heat/engine/resources.py @@ -442,7 +442,7 @@ class VolumeAttachment(Resource): volume_id=volume_id, device=self.t['Properties']['Device']) - vol = volapi.get(va.id) + vol = self.nova('volume').volumes.get(va.id) while vol.status == 'available' or vol.status == 'attaching': eventlet.sleep(1) vol.get()