From bfc088d625604160304c47ce09ef8cd2d8e29561 Mon Sep 17 00:00:00 2001 From: guochuyicmri Date: Sat, 17 Nov 2018 21:37:46 +0800 Subject: Fix E2E Service Instantiation bugs Change-Id: Ic4d7f4bfffbd8067069991b26439206768dbf6c7 Issue-ID: USECASEUI-179 Signed-off-by: guochuyicmri --- usecaseui-portal/src/app/myhttp.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usecaseui-portal/src/app/myhttp.service.ts') diff --git a/usecaseui-portal/src/app/myhttp.service.ts b/usecaseui-portal/src/app/myhttp.service.ts index fda6d0f8..c2359f57 100644 --- a/usecaseui-portal/src/app/myhttp.service.ts +++ b/usecaseui-portal/src/app/myhttp.service.ts @@ -90,7 +90,7 @@ export class MyhttpService { ns_healService: this.baseUrl + "/uui-lcm/healNetworkServiceInstance?ns_instance_id=", vnfInfo: this.baseUrl + "/uui-lcm/VnfInfo/", progress: this.baseUrl + "/uui-lcm/services/" + "*_*" + "/operations/", - nsProgress: this.baseUrl + "/uui-lcm/jobs/getNsLcmJobStatus/" + "*_*" + "?responseId=", + nsProgress: this.baseUrl + "/uui-lcm/jobs/getNsLcmJobStatus/" + "*_*" + "?responseId=0&serviceInstanceId=", e2eScale: this.baseUrl + "/services/scaleServices/", e2e_nsdata: this.baseUrl + "/getServiceInstanceById/customerId/", @@ -238,8 +238,8 @@ export class MyhttpService { let url = this.url.progress.replace("*_*", obj.serviceId) + obj.operationId; return this.http.get(url); } - getNsProgress(jobid, responseId) { - let url = this.url.nsProgress.replace("*_*", jobid) + responseId; + getNsProgress(jobid,serviceId){ + let url = this.url.nsProgress.replace("*_*",jobid) + serviceId; return this.http.get(url); } -- cgit 1.2.3-korg