Skip to content

Commit c23b832

Browse files
authored
Merge pull request #117 from NHSDigital/ryma2fhir-patch-14
Update masterfhirvalidation.yml
2 parents fa314c3 + 7f4ecad commit c23b832

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/masterfhirvalidation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ jobs:
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

0 commit comments

Comments
 (0)