diff options
| author | Jenkins <jenkins@review.openstack.org> | 2011-12-13 21:58:30 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2011-12-13 21:58:30 +0000 |
| commit | fd9e0e92af785d1e48ce42ce7eb4501595aabe3c (patch) | |
| tree | 9504a0a1598e657d6dcaee136b6932bf821ab624 /nova/compute | |
| parent | 9737f407e338ce7154a2acd493405426a7e33076 (diff) | |
| parent | 88b1d7739b5d0fabc613f85f64741321f67bf719 (diff) | |
Merge "Renaming instance_actions.instance_id column to instance_uuid. blueprint: internal-uuids"
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index 89c4399f1..806897bf4 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -1375,7 +1375,7 @@ class API(base.Base): def get_actions(self, context, instance): """Retrieve actions for the given instance.""" - return self.db.instance_get_actions(context, instance['id']) + return self.db.instance_get_actions(context, instance['uuid']) @check_vm_state(state_checker.SUSPEND) @scheduler_api.reroute_compute(state_checker.SUSPEND) |
