Skip to content

Commit

Permalink
Fixing the end slash for the url otherwise the call will fail (#8674)
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoAlbano committed Jun 16, 2023
1 parent f915370 commit ac694cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli/scripts/init-aae-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async function healthCheck(nameService: string) {
}

async function getApplicationByStatus(status: string) {
const url = `${args.host}/deployment-service/v1/applications/`;
const url = `${args.host}/deployment-service/v1/applications`;

const pathParams = {};
const queryParams = { status };
Expand Down Expand Up @@ -250,7 +250,7 @@ function deleteDescriptor(name: string) {
}

function deploy(model: any) {
const url = `${args.host}/deployment-service/v1/applications/`;
const url = `${args.host}/deployment-service/v1/applications`;

const pathParams = {};
const queryParams = {};
Expand Down

0 comments on commit ac694cd

Please sign in to comment.