Terminated_at instead of deleted_at.

This commit is contained in:
Andrew Melton 2013-06-04 11:40:47 -04:00
parent fc1419df52
commit 559f35af4b

View File

@ -106,7 +106,7 @@ def _usage_for_instance(instance, task=None):
def _delete_for_instance(instance):
delete = {
'instance': instance['uuid'],
'deleted_at': dt.dt_to_decimal(instance.get('deleted_at')),
'deleted_at': dt.dt_to_decimal(instance.get('terminated_at')),
}
launched_at = instance.get('launched_at')