diff options
| author | Matthew Hooker <matt@cloudscaling.com> | 2011-07-27 20:32:46 -0400 |
|---|---|---|
| committer | Matthew Hooker <matt@cloudscaling.com> | 2011-07-27 20:32:46 -0400 |
| commit | 7026927fa52e34eebc17b387e0ca6feade99727a (patch) | |
| tree | 8536e15ecf1606cc36b44754bc2f9ad4372dc670 /nova | |
| parent | 26fd6c3f309a2febd7538684a470d462ab83dab3 (diff) | |
fix call to nonexistant method to_global_ipv6.
Add myself to authors file
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/db/sqlalchemy/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/db/sqlalchemy/api.py b/nova/db/sqlalchemy/api.py index d7810098a..5de25b37a 100644 --- a/nova/db/sqlalchemy/api.py +++ b/nova/db/sqlalchemy/api.py @@ -1312,7 +1312,7 @@ def instance_get_fixed_addresses_v6(context, instance_id): # combine prefixes, macs, and project_id into (prefix,mac,p_id) tuples prefix_mac_tuples = zip(prefixes, macs, [project_id for m in macs]) # return list containing ipv6 address for each tuple - return [ipv6.to_global_ipv6(*t) for t in prefix_mac_tuples] + return [ipv6.to_global(*t) for t in prefix_mac_tuples] @require_context |
