diff options
author | Dan Timoney <dtimoney@att.com> | 2019-10-04 15:04:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-10-04 15:04:45 +0000 |
commit | 809993fe658026f4cb953e49ab0331e2d4e5c8f8 (patch) | |
tree | 9cfa4b5be09a3f11d3841b899771835608a73d93 /cds-ui/server/src/config | |
parent | 4c2b42f141e1501222a284f964eb4303cc4f03aa (diff) | |
parent | d8205529640466ce7e3d3dfc7fd2085170b04efb (diff) |
Merge "Worked on defect CCSDK-1793"
Diffstat (limited to 'cds-ui/server/src/config')
-rw-r--r-- | cds-ui/server/src/config/app-config.ts | 6 |
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({ |