diff options
author | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-10-05 16:16:42 -0400 |
---|---|---|
committer | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-10-05 16:16:42 -0400 |
commit | db620f323c2fc5e65a722a33ae8a42b54817dae1 (patch) | |
tree | 595536c1beeb8a40449d8115f197ea9336d39e7e | |
parent | 90199a2acbf4499c7e218ec0c5c31620cbac0f07 (diff) | |
download | nova-db620f323c2fc5e65a722a33ae8a42b54817dae1.tar.gz nova-db620f323c2fc5e65a722a33ae8a42b54817dae1.tar.xz nova-db620f323c2fc5e65a722a33ae8a42b54817dae1.zip |
Missed an ec2_id conversion to internal_id
-rw-r--r-- | nova/api/ec2/cloud.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/ec2/cloud.py b/nova/api/ec2/cloud.py index 7f5f4c4e9..175bb493c 100644 --- a/nova/api/ec2/cloud.py +++ b/nova/api/ec2/cloud.py @@ -262,7 +262,7 @@ class CloudController(object): # ec2_id_list is passed in as a list of instances ec2_id = ec2_id_list[0] internal_id = ec2_id_to_internal_id(ec2_id) - instance_ref = db.instance_get_by_ec2_id(context, internal_id) + instance_ref = db.instance_get_by_internal_id(context, internal_id) return rpc.call('%s.%s' % (FLAGS.compute_topic, instance_ref['host']), {"method": "get_console_output", |