diff options
author | Luji <lu.ji3@zte.com.cn> | 2016-09-28 02:29:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@open-o.org> | 2016-09-28 02:29:16 +0000 |
commit | ecb10b8d3416247c171fd9244f6ed730a11bcc47 (patch) | |
tree | a958c7186ce1dd24cfe0f575809329c0304ad806 /openo-portal/portal-lifecyclemgr | |
parent | 4a106d3cf7ef0ac4e98ae80a10affaee25a4c6ef (diff) | |
parent | 9e6002938260d6c77b3731071b260e3cdd1f76b1 (diff) |
Merge "Fix gatewayUri error"
Diffstat (limited to 'openo-portal/portal-lifecyclemgr')
-rw-r--r-- | openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js index 54be02b1..78923796 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js @@ -225,7 +225,7 @@ function createGsoServiceInstance(gatewayService, serviceInstance) { 'serviceDefId': serviceTemplate.gsarId, 'templatedId': serviceInstance.serviceTemplateId, 'templateName': serviceTemplate.templateName, - 'getewayUri': gsoLcmUrl, + 'getewayUri': gsoLcmUri, 'parameters': serviceInstance.serviceParameters }; var serviceInstanceId; @@ -289,7 +289,7 @@ function createNetworkService(gatewayService, gatewayUri, serviceInstance) { return nsInstanceId; } -function instantiateNetworkService(gatewayUri, nsInstanceId, serviceInstance) { +function instantiateNetworkService(gatewayService, nsInstanceId, serviceInstance) { var initNsUrl = gatewayUri + '/' + nsInstanceId + '/Instantiate' var parameter = { 'gatewayUri': initNsUrl, |