Merge lp:~vishvananda/nova/lp720589 into lp:~hudson-openstack/nova/trunk

Proposed by Vish Ishaya
Status: Merged
Approved by: Devin Carlen
Approved revision: 697
Merged at revision: 699
Proposed branch: lp:~vishvananda/nova/lp720589
Merge into: lp:~hudson-openstack/nova/trunk
Diff against target: 12 lines (+1/-1)
1 file modified
nova/db/api.py (+1/-1)
To merge this branch: bzr merge lp:~vishvananda/nova/lp720589
Reviewer Review Type Date Requested Status
Devin Carlen (community) Approve
Jay Pipes (community) Approve
Review via email: mp+50248@code.launchpad.net

Description of the change

Correctly pass the associate paramater for project_get_network through the IMPL layer in the db api.

To post a comment you must log in.
Revision history for this message
Jay Pipes (jaypipes) wrote :

lgtm.

review: Approve
Revision history for this message
Devin Carlen (devcamcar) wrote :

approve

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'nova/db/api.py'
2--- nova/db/api.py 2011-02-17 21:39:03 +0000
3+++ nova/db/api.py 2011-02-17 22:49:37 +0000
4@@ -576,7 +576,7 @@
5
6 """
7
8- return IMPL.project_get_network(context, project_id)
9+ return IMPL.project_get_network(context, project_id, associate)
10
11
12 def project_get_network_v6(context, project_id):