diff options
author | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-14 15:37:29 -0700 |
---|---|---|
committer | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-14 15:37:29 -0700 |
commit | 9dce9ee5fe5a1df018b9a606a3ea35b2dbfc987e (patch) | |
tree | 037441a413277a6039cc5cd97d9144d4487965c8 | |
parent | 9f135cc4d6069a0b882c8e848d3b6cb292002d10 (diff) | |
download | nova-9dce9ee5fe5a1df018b9a606a3ea35b2dbfc987e.tar.gz nova-9dce9ee5fe5a1df018b9a606a3ea35b2dbfc987e.tar.xz nova-9dce9ee5fe5a1df018b9a606a3ea35b2dbfc987e.zip |
Clarified message when a VM is not running but still in DB
-rw-r--r-- | nova/compute/manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index a7727a239..019bb3c89 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -1007,7 +1007,7 @@ class ComputeManager(manager.Manager): vm_instance = vm_instances.get(name) if vm_instance is None: LOG.info(_("Found instance '%(name)s' in DB but no VM. " - "Shutting off.") % locals()) + "Setting state to shutoff.") % locals()) vm_state = power_state.SHUTOFF else: vm_state = vm_instance.state |