From 4d9160177ac89c9a365db774c3f90685324edd64 Mon Sep 17 00:00:00 2001 From: Xiuchao Wu Date: Fri, 21 Oct 2016 15:27:02 +0100 Subject: Remove unnecessary URL prefix "org.openo.sdno.brs" when portal calls BRS that is running in a docker [ SDNO-750 ] Change-Id: I8db05101e00875ada34a887a5bc73794dd599e0d Signed-off-by: Xiuchao Wu --- openo-portal/portal-resmgr/src/main/webapp/resmgr-sdn/js/brs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openo-portal/portal-resmgr/src/main/webapp/resmgr-sdn') 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..2a27603e 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); }); -- cgit 1.2.3-korg