From e0148ce3c58c8ffb90b86615bb12afe6eedcf8e8 Mon Sep 17 00:00:00 2001 From: "mukesh.paliwal1@huawei.com" Date: Tue, 25 Aug 2020 13:31:05 +0530 Subject: Dynamic bpmn changes for java 11 upgrade Issue-ID: SO-3195 Signed-off-by: mukesh.paliwal1@huawei.com Change-Id: I8671cd5be138d41cfce4410dd14e0f9c18d7d21c --- .../so-monitoring-ui/src/main/frontend/src/app/data.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/so-monitoring/so-monitoring-ui/src/main/frontend/src/app/data.service.ts b/so-monitoring/so-monitoring-ui/src/main/frontend/src/app/data.service.ts index 352fdb7788..aa8af96d20 100644 --- a/so-monitoring/so-monitoring-ui/src/main/frontend/src/app/data.service.ts +++ b/so-monitoring/so-monitoring-ui/src/main/frontend/src/app/data.service.ts @@ -94,7 +94,7 @@ export class DataService { } onboardBPMNInfra(formData: any): Observable { - var url = environment.soMonitoringBackendURL + 'workflowPackages/onboard'; + var url = environment.soHotboardingBackendURL + 'workflowPackages/onboard'; return this.http.post(url, formData) .pipe( catchError(this.httpErrorHandlerService.handleError("POST", url)) @@ -107,7 +107,7 @@ export class DataService { 'Content-Type': 'application/json', }) }; - var url = environment.soMonitoringBackendURL + 'serviceRecipes'; + var url = environment.soHotboardingBackendURL + 'serviceRecipes'; return this.http.post(url, data, this.httpOptions) .pipe( catchError(this.httpErrorHandlerService.handleError("POST", url)) -- cgit 1.2.3-korg