summaryrefslogtreecommitdiffstats
path: root/openo-portal/portal-resmgr/src/main
diff options
context:
space:
mode:
authorXiuchao Wu <xiuchao.wu@huawei.com>2016-10-24 17:24:08 +0100
committerXiuchao Wu <xiuchao.wu@huawei.com>2016-10-24 17:24:08 +0100
commitf833c8b9010fcc60cb28d7c8a74319b99a6cb3ce (patch)
treeff8c010d3ce0c97413eac09b775ded2c26ad03e1 /openo-portal/portal-resmgr/src/main
parent30908ad02cf5255b70fea074b5830feffd4f8cd4 (diff)
Remove unnecessary URL prefix "org.openo.sdno.brs" when portal calls BRS
that is running in a docker [ SDNO-750 ] Change-Id: I1dda47c089098c8039a306ef30da376a54a8c3d8 Signed-off-by: Xiuchao Wu <xiuchao.wu@huawei.com>
Diffstat (limited to 'openo-portal/portal-resmgr/src/main')
-rw-r--r--openo-portal/portal-resmgr/src/main/webapp/resmgr-sdn/js/brs.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/openo-portal/portal-resmgr/src/main/webapp/resmgr-sdn/js/brs.js b/openo-portal/portal-resmgr/src/main/webapp/resmgr-sdn/js/brs.js
index df28de3f..b9cace8a 100644
--- a/openo-portal/portal-resmgr/src/main/webapp/resmgr-sdn/js/brs.js
+++ b/openo-portal/portal-resmgr/src/main/webapp/resmgr-sdn/js/brs.js
@@ -14,7 +14,7 @@
*/
var url = "";
$.getJSON("./conf/dataconfig.json", function (jsonData){
- url = jsonData.url +":"+ jsonData.port + "/org.openo.sdno.brs";
+ url = jsonData.url +":"+ jsonData.port;
console.log("URL = " + url);
});
@@ -344,4 +344,4 @@ $(function () {
});
});
-}) \ No newline at end of file
+})