From de23221007cc687533c86f0de217c7d0b6fb523f Mon Sep 17 00:00:00 2001 From: Jason Kölker Date: Tue, 7 Feb 2012 00:37:40 -0600 Subject: Store the correct tenant_id/project_id Melange stores the networks in the nova table so quantum manager can use it, this makes it store the correct value so deallocation will work. Change-Id: Icafacca559570c6de679fbb126700519a19b77ee --- nova/network/quantum/melange_ipam_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/network/quantum/melange_ipam_lib.py b/nova/network/quantum/melange_ipam_lib.py index c8ec5ab24..735107d98 100644 --- a/nova/network/quantum/melange_ipam_lib.py +++ b/nova/network/quantum/melange_ipam_lib.py @@ -67,7 +67,7 @@ class QuantumMelangeIPAMLib(object): dns1=dns1, dns2=dns2) net = {"uuid": quantum_net_id, - "project_id": project_id, + "project_id": tenant_id, "priority": priority, "label": label} if FLAGS.quantum_use_dhcp: -- cgit