summaryrefslogtreecommitdiffstats
path: root/nova/compute
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2011-12-13 21:58:30 +0000
committerGerrit Code Review <review@openstack.org>2011-12-13 21:58:30 +0000
commitfd9e0e92af785d1e48ce42ce7eb4501595aabe3c (patch)
tree9504a0a1598e657d6dcaee136b6932bf821ab624 /nova/compute
parent9737f407e338ce7154a2acd493405426a7e33076 (diff)
parent88b1d7739b5d0fabc613f85f64741321f67bf719 (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.py2
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)