File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 7171 nohup java -jar validation-service-fhir-r4/target/fhir-validator.jar --terminology.url=https://ontology.nhs.uk/production1/fhir --terminology.authorization.tokenUrl=https://ontology.nhs.uk/authorisation/auth/realms/nhs-digital-terminology/protocol/openid-connect/token --terminology.authorization.clientId=${{ secrets.ONTO_CLIENT_ID }} --terminology.authorization.clientSecret=${{ secrets.ONTO_CLIENT_SECRET }} --aws.validationSupport=false --aws.queueEnabled=false &
7272 # Wait for it to become ready, try 30 times, with 10 seconds between
7373 for i in {1..60}; do
74- if curl -sSf http://localhost:8080/fhir/metadata > /dev/null; then
74+ if curl -sSf http://localhost:9001/metadata > /dev/null || \
75+ curl -sSf http://localhost:9001/fhir/metadata > /dev/null; then
7576 echo "FHIR Validator is up!"
7677 exit 0
7778 fi
You can’t perform that action at this time.
0 commit comments