Skip to content

Commit

Permalink
fix: adding leading / to fastapi path to delimit domain
Browse files Browse the repository at this point in the history
  • Loading branch information
jtblack-aws committed Jul 26, 2024
1 parent f3d2df8 commit 1fceca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/osml/data_catalog/dc_dataplane.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class DCDataplane extends Construct {
ES_PORT: this.config.ES_PORT,
ES_USE_SSL: this.config.ES_USE_SSL,
ES_VERIFY_CERTS: this.config.ES_VERIFY_CERTS,
STAC_FASTAPI_ROOT_PATH: this.config.STAC_FASTAPI_ROOT_PATH
STAC_FASTAPI_ROOT_PATH: `/${this.config.STAC_FASTAPI_ROOT_PATH}`
};

// Package op the container function
Expand Down

0 comments on commit 1fceca5

Please sign in to comment.