summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-10-03 19:27:56 +0530
committerDan Timoney <dtimoney@att.com>2019-10-04 15:04:13 +0000
commitfed81257390acda8f423410a6bd0475f7a39a571 (patch)
tree795f95a35f0141fb61b5341ef9da621d4360fa5e
parent3778cddf48ed3da6ad0ff2a8f6f65d83a7065ed7 (diff)
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 <arundpil@in.ibm.com>
-rw-r--r--cds-ui/server/src/config/app-config.ts6
1 files changed, 3 insertions, 3 deletions
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({