Skip to content

Commit

Permalink
fix call to nonexistant method to_global_ipv6.
Browse files Browse the repository at this point in the history
Add myself to authors file
  • Loading branch information
Matthew Hooker committed Jul 28, 2011
1 parent 26fd6c3 commit 7026927
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Authors
Expand Up @@ -67,6 +67,7 @@ Lvov Maxim <usrleon@gmail.com>
Mark Washenberger <mark.washenberger@rackspace.com>
Masanori Itoh <itoumsn@nttdata.co.jp>
Matt Dietz <matt.dietz@rackspace.com>
Matthew Hooker <matt@cloudscaling.com>
Michael Gundlach <michael.gundlach@rackspace.com>
Mike Scherbakov <mihgen@gmail.com>
Mohammed Naser <mnaser@vexxhost.com>
Expand Down
2 changes: 1 addition & 1 deletion nova/db/sqlalchemy/api.py
Expand Up @@ -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
Expand Down

0 comments on commit 7026927

Please sign in to comment.