summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/services
diff options
context:
space:
mode:
authorTao Shen <shentao@chinamobile.com>2018-11-14 11:50:47 +0000
committerGerrit Code Review <gerrit@onap.org>2018-11-14 11:50:47 +0000
commitffb300e069c38e96245ad06dba908558c68ac9a1 (patch)
treeefc33be2b778663cbaaee860fee67e321a1ffc57 /usecaseui-portal/src/app/services
parent0dcf11c84e8be3bcecbf6135c21db30fc5ef8356 (diff)
parent3f8fdca4a21906d77ab61d75ab162edf6e1448c4 (diff)
Merge "fix ns instance instantiation bug"
Diffstat (limited to 'usecaseui-portal/src/app/services')
-rw-r--r--usecaseui-portal/src/app/services/services-list/services-list.component.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/usecaseui-portal/src/app/services/services-list/services-list.component.ts b/usecaseui-portal/src/app/services/services-list/services-list.component.ts
index 003e897f..e742ee39 100644
--- a/usecaseui-portal/src/app/services/services-list/services-list.component.ts
+++ b/usecaseui-portal/src/app/services/services-list/services-list.component.ts
@@ -532,8 +532,8 @@ export class ServicesListComponent implements OnInit {
let createParams = "?ns_instance_id=" + data.nsInstanceId +
"&customerId="+this.customerSelected.id +
"&serviceType="+this.serviceTypeSelected.name +
- "&serviceDomain="+"SITE" +
- "&parentServiceInstanceId="+this.parentServiceInstanceId;
+ "&serviceDomain="+ this.templateTypeSelected +
+ "&parentServiceInstanceId=";
// step2
this.createNsService(createParams,obj.step2).then((jobid)=>{
@@ -572,6 +572,10 @@ export class ServicesListComponent implements OnInit {
let mypromise = new Promise((res,rej)=>{
this.myhttp.nsCreateInstance2(id,obj)
.subscribe((data)=>{
+ if(data.status == "FAILED"){
+ console.log("instantiate ns service data :" + JSON.stringify(data));
+ return false;
+ }
res(data.jobId);
})
})