diff options
author | Luji <lu.ji3@zte.com.cn> | 2016-10-25 01:50:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@open-o.org> | 2016-10-25 01:50:23 +0000 |
commit | 06a7b9bebe691538e13edb57d309d3f33543c766 (patch) | |
tree | 674a701d44126dc021b28300b46a01e107a8e947 /openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr | |
parent | 3d4fc7c841f45c9cf6b46095408479af837ffe4a (diff) | |
parent | cade354c0d377bbb03eaea62edccb0a7d34488c3 (diff) |
Merge "Issue#GSO-44 Modify to get servceId from response for creating service."
Diffstat (limited to 'openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr')
-rw-r--r-- | openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js | 2 |
1 files changed, 1 insertions, 1 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 a9eba6f2..4b135f70 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 @@ -308,7 +308,7 @@ function createServiceInstance(gatewayService, nsUri, serviceInstance) { dataType: "json", data: JSON.stringify(sParameter) })).then(function(response) { - var nsInstanceId = response.nsInstanceId; + var nsInstanceId = response.serviceId; serviceInstance.serviceId = nsInstanceId; var initNsUrl = nsUri + '/' + nsInstanceId + '/Instantiate'; var parameter = { |