From 8e37837087ff419b3653b226b2c21678d86ab4c8 Mon Sep 17 00:00:00 2001 From: Patrick Brady Date: Fri, 25 May 2018 12:25:59 -0700 Subject: Change port to match Kubernetes port Kubernetes uses a 302 prefix on port numbers. Going to change the port used for cdt proxy backend to use this port. Change-Id: I630b101e28b8cc072166dcbcb0e8de42dfb6d513 Signed-off-by: Patrick Brady Issue-ID: APPC-924 --- src/environments/environment.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/environments/environment.ts b/src/environments/environment.ts index e30faf3..6c6dcf8 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -35,9 +35,9 @@ export const environment = { checkTestStatus: 'http://' + window.location.hostname + ':8282/restconf/operations/appc-provider-lcm:action-status' */ // APIs for CORS proxy Service. - getDesigns: 'http://' + window.location.hostname + ':9090/cdtService/getDesigns', - validateTemplate: 'http://' + window.location.hostname + ':9090/cdtService/validateTemplate', - testVnf: 'http://' + window.location.hostname + ':9090/cdtService/testVnf', - checkTestStatus: 'http://' + window.location.hostname + ':9090/cdtService/checkTestStatus' + getDesigns: 'http://' + window.location.hostname + ':30290/cdtService/getDesigns', + validateTemplate: 'http://' + window.location.hostname + ':30290/cdtService/validateTemplate', + testVnf: 'http://' + window.location.hostname + ':30290/cdtService/testVnf', + checkTestStatus: 'http://' + window.location.hostname + ':30290/cdtService/checkTestStatus' }; \ No newline at end of file -- cgit 1.2.3-korg