summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyu Ishimoto <ryu@midokura.jp>2011-08-16 18:52:29 +0900
committerRyu Ishimoto <ryu@midokura.jp>2011-08-16 18:52:29 +0900
commitc3c164455f9b5d4ea994a4453342ccb00d987766 (patch)
tree8932c70c771d40ef39a7ee27d320ddb28f3469ff
parentee06de65b674a7a91597bc9121b3bd3bd11e658b (diff)
Include vif UUID in the network info dictionary
-rw-r--r--nova/network/manager.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/nova/network/manager.py b/nova/network/manager.py
index f115c66f1..f32f8e837 100644
--- a/nova/network/manager.py
+++ b/nova/network/manager.py
@@ -499,6 +499,7 @@ class NetworkManager(manager.SchedulerDependentManager):
'dhcp_server': dhcp_server,
'broadcast': network['broadcast'],
'mac': vif['address'],
+ 'vif_uuid': vif['uuid'],
'rxtx_cap': flavor['rxtx_cap'],
'dns': [],
'ips': [ip_dict(ip) for ip in network_IPs],