summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHaibin Huang <haibin.huang@intel.com>2018-11-14 10:25:07 +0000
committerHuang Haibin <haibin.huang@intel.com>2018-11-14 11:39:13 +0000
commit78206431c8b8f07c7e9c82161d8080664c092036 (patch)
tree634299b57672f46c132f33bf9d04bc6dbc7fe2ea
parent3c4f84448181551a9daa5804b6512aee8f7e903c (diff)
Can't create two port in one network
Change-Id: I2f57a75b9fb1daec8e59205451a14178a7724760 Issue-ID: VFC-1186 Signed-off-by: Haibin Huang <haibin.huang@intel.com> (cherry picked from commit 70314109351b750c8bcabbccb9bc4b021d9837dc)
-rw-r--r--lcm/lcm/pub/vimapi/adaptor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/lcm/pub/vimapi/adaptor.py b/lcm/lcm/pub/vimapi/adaptor.py
index 44153620..a7a0fd3d 100644
--- a/lcm/lcm/pub/vimapi/adaptor.py
+++ b/lcm/lcm/pub/vimapi/adaptor.py
@@ -251,7 +251,7 @@ def create_port(vim_cache, res_cache, data, port, do_notify, res_type):
subnet_id = get_res_id(res_cache, RES_SUBNET, port["vl_id"])
param = {
"networkId": network_id,
- "name": port["properties"].get("name", "undefined")
+ "name": port["cp_id"]
}
set_opt_val(param, "subnetId", subnet_id)
set_opt_val(param, "macAddress", ignore_case_get(port["properties"], "mac_address"))