From 19a4ba83ae8dcec00891c451418ff691c35eab93 Mon Sep 17 00:00:00 2001 From: Srinivasan Date: Mon, 29 Mar 2021 19:51:50 +0530 Subject: [PATCH] bug fix pcb demo Signed-off-by: Srinivasan Change-Id: Ia09f8337052083ffc2f7c47d3180c33cafa01dbc --- example-apps/PDD/frontend-src/src/app/ealtservice.service.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/example-apps/PDD/frontend-src/src/app/ealtservice.service.ts b/example-apps/PDD/frontend-src/src/app/ealtservice.service.ts index 3d5bc9b..dd0a7e4 100644 --- a/example-apps/PDD/frontend-src/src/app/ealtservice.service.ts +++ b/example-apps/PDD/frontend-src/src/app/ealtservice.service.ts @@ -20,7 +20,7 @@ import { v4 as uuid } from 'uuid'; export class EaltserviceService { - private baseUrl = 'http://159.138.139.4:30281/'; + private baseUrl = 'http://localhost:30281/'; private imageUploadUrl = this.baseUrl+'uploadimageinput'; @@ -35,9 +35,6 @@ export class EaltserviceService { private pcbDetectUrl = this.baseUrl - private monitorImageUrl = 'http://159.138.33.54:30092' + '/v1/inventry/image' - - constructor(private http:HttpClient) { } @@ -82,4 +79,4 @@ export class EaltserviceService { return this.http.get(this.pcbDetectUrl); } -} \ No newline at end of file +} -- 2.16.6