diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-08-24 13:27:23 -0400 |
|---|---|---|
| committer | Brian Lamar <brian.lamar@rackspace.com> | 2011-08-24 13:27:23 -0400 |
| commit | a6bf7c0b2522509dda8dd5e537fad49665aa2af2 (patch) | |
| tree | 0b98274e772e8ad4b90a97f81875762feb7afbe8 /nova/api | |
| parent | 1c7002db8be430cded6efb7378103e17c8df21b4 (diff) | |
Added DELETED status to OSAPI just in case.
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/common.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nova/api/openstack/common.py b/nova/api/openstack/common.py index 90b2095b8..07c6fbd11 100644 --- a/nova/api/openstack/common.py +++ b/nova/api/openstack/common.py @@ -76,6 +76,9 @@ _STATE_MAP = { vm_states.ERROR: { 'default': 'ERROR', }, + vm_states.DELETED: { + 'default': 'DELETED', + }, } |
