From d8205529640466ce7e3d3dfc7fd2085170b04efb Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Thu, 3 Oct 2019 19:27:56 +0530 Subject: Worked on defect CCSDK-1793 Changed base url from controller-blueprint to blueprint-processor Issue-ID: CCSDK-1793 Change-Id: I38f8e8ba482a05d5b385c109fcd4c54f2cd77b48 Signed-off-by: Arundathi Patil --- cds-ui/server/src/config/app-config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cds-ui') diff --git a/cds-ui/server/src/config/app-config.ts b/cds-ui/server/src/config/app-config.ts index 0c02381dd..dcca629f2 100644 --- a/cds-ui/server/src/config/app-config.ts +++ b/cds-ui/server/src/config/app-config.ts @@ -23,14 +23,14 @@ export const appConfig = Object.freeze({ export const controllerApiConfig = Object.freeze({ http: Object.freeze({ - url: process.env.API_BLUEPRINT_CONTROLLER_HTTP_BASE_URL || "http://localhost:8080/api/v1", - authToken: process.env.API_BLUEPRINT_CONTROLLER_HTTP_AUTH_TOKEN || "Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==" + url: process.env.API_BLUEPRINT_PROCESSOR_HTTP_BASE_URL || "http://localhost:8081/api/v1", + authToken: process.env.API_BLUEPRINT_PROCESSOR_HTTP_AUTH_TOKEN || "Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==" }) }); export const processorApiConfig = Object.freeze({ http: Object.freeze({ - url: process.env.API_BLUEPRINT_PROCESSOR_HTTP_BASE_URL || "http://localhost:8080/api/v1", + url: process.env.API_BLUEPRINT_PROCESSOR_HTTP_BASE_URL || "http://localhost:8081/api/v1", authToken: process.env.API_BLUEPRINT_PROCESSOR_HTTP_AUTH_TOKEN || "Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==" }), grpc: Object.freeze({ -- cgit 1.2.3-korg