You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
Hi
I am trying to run inferno locally against our local FHIR server. Have done that before without any issues.
However today I just cloned the latest code available and tried to run the server but getting error(pasted below) repeatedly.
INFO | Inferno | Checking that validator is available at http://validator_service:4567
ERROR | Inferno | Unable to reach validator at http://validator_service:4567
Can you tell me if something else needs to be done to make it working?
The text was updated successfully, but these errors were encountered:
Inferno uses an external service to validate FHIR resources, and with the most recent update is now checking that it can actually reach that service before starting. If you don't care about validating FHIR resources, you can change this line of config.yml to resource_validator: internal, but this will cause you to get strange results in any tests which perform FHIR validation.
The easiest way to get the external validator service working is using docker. If you run docker-compose up from the inferno directory, that should run both inferno and the validator service. If docker isn't an option, you will need to get the service running (source code: https://github.com/inferno-community/fhir-validator-wrapper), and update the external_resource_validator_url in config.yml to point at the url where this service is running.
Hi
I am trying to run inferno locally against our local FHIR server. Have done that before without any issues.
However today I just cloned the latest code available and tried to run the server but getting error(pasted below) repeatedly.
Can you tell me if something else needs to be done to make it working?
The text was updated successfully, but these errors were encountered: