diff options
author | KAPIL SINGAL <ks220y@att.com> | 2020-09-14 18:59:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-09-14 18:59:48 +0000 |
commit | 6b69173c52a18f7662fe2769575d356cbdc477fe (patch) | |
tree | 4759edfc22e5189bf5a0b0843583f778a402824b /cds-ui/server | |
parent | 9a64a1c39c0ec5206fb24ca8d3f323287be751f2 (diff) | |
parent | 992af3704682c5bc74873ca23cb39862a697f486 (diff) |
Merge "adding deploy feature"
Diffstat (limited to 'cds-ui/server')
-rw-r--r-- | cds-ui/server/src/controllers/blueprint-rest.controller.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cds-ui/server/src/controllers/blueprint-rest.controller.ts b/cds-ui/server/src/controllers/blueprint-rest.controller.ts index 870f9793f..91d7e66e3 100644 --- a/cds-ui/server/src/controllers/blueprint-rest.controller.ts +++ b/cds-ui/server/src/controllers/blueprint-rest.controller.ts @@ -307,7 +307,7 @@ export class BlueprintRestController { if (appConfig.action.grpcEnabled) return this.uploadFileToBlueprintProcessorGrpc(file, 'PUBLISH', response); else - return this.uploadFileToBlueprintProcessor(file, '/execution-service/upload/', response); + return this.uploadFileToBlueprintProcessor(file, '/blueprint-model/publish', response); }, err => { reject(err); }); |