diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-08-31 22:55:34 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-08-31 22:55:34 +0000 |
| commit | 3fa7bf7cc4dece3662cf31e8fb0b6daa7df54f8b (patch) | |
| tree | 2f8e720bac08d3d98ffea5009a4fb8d718cfe557 /nova/exception.py | |
| parent | 32f639aa6a6d017b234987757d7db1a3600009d8 (diff) | |
| parent | c9a6681f484f38778987fbbaa352d07bd8f747c3 (diff) | |
| download | nova-3fa7bf7cc4dece3662cf31e8fb0b6daa7df54f8b.tar.gz nova-3fa7bf7cc4dece3662cf31e8fb0b6daa7df54f8b.tar.xz nova-3fa7bf7cc4dece3662cf31e8fb0b6daa7df54f8b.zip | |
Fixed and improved the way instance "states" are set. Instead of relying on solely the power_state of a VM, there are now explicitly defined VM states and VM task states which respectively define the current state of the VM and the task which is currently being performed by the VM.
Diffstat (limited to 'nova/exception.py')
| -rw-r--r-- | nova/exception.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/exception.py b/nova/exception.py index caa65146d..fca4586c3 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -61,7 +61,7 @@ class ApiError(Error): super(ApiError, self).__init__(outstr) -class BuildInProgress(Error): +class RebuildRequiresActiveInstance(Error): pass |
