diff options
| author | Kevin Bringard <kbringard@attinteractive.com> | 2011-07-01 11:14:30 -0600 |
|---|---|---|
| committer | Kevin Bringard <kbringard@attinteractive.com> | 2011-07-01 11:14:30 -0600 |
| commit | 3a65ea2f29ca169779cbd09acf4f7ac50314c969 (patch) | |
| tree | a11e90a04ac7f2d7dab090e0fa7f1859e76e58cf | |
| parent | 6843421be9cdef1fc12d3480889bdcfd96821e1b (diff) | |
Changed fixed_ip.network to be fixed_ips.network, which is the correct DB field
| -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 ffd009513..7278ad1f5 100644 --- a/nova/db/sqlalchemy/api.py +++ b/nova/db/sqlalchemy/api.py @@ -1237,7 +1237,7 @@ def instance_get_project_vpn(context, project_id): options(joinedload_all('fixed_ips.floating_ips')).\ options(joinedload('virtual_interfaces')).\ options(joinedload('security_groups')).\ - options(joinedload_all('fixed_ip.network')).\ + options(joinedload_all('fixed_ips.network')).\ options(joinedload('metadata')).\ options(joinedload('instance_type')).\ filter_by(project_id=project_id).\ |
