Skip to content

Commit

Permalink
Fix typo in data-service entrypoint.
Browse files Browse the repository at this point in the history
No space after host arg and before --port flag for uvicorn.
  • Loading branch information
robertbartel authored and aaraney committed May 13, 2024
1 parent b92ca71 commit da6649c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/main/dataservice/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ if [ -d ${UPDATED_PACKAGES_DIR:=/updated_packages} ]; then
fi
fi

python -m uvicorn dmod.dataservice.rest_service:app --host "${HOST:?HOST not set}"--port "${PORT:?PORT not set}" --ssl-keyfile="${KEY_PATH?:KEY_PATH not set}" --ssl-certfile="${CERT_PATH:?CERT_PATH not set}"
python -m uvicorn dmod.dataservice.rest_service:app --host "${HOST:?HOST not set}" --port "${PORT:?PORT not set}" --ssl-keyfile="${KEY_PATH?:KEY_PATH not set}" --ssl-certfile="${CERT_PATH:?CERT_PATH not set}"

0 comments on commit da6649c

Please sign in to comment.