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
It appears there is an issue with the default configuration for this project. If you do a fresh clone, and try mvn clean install there will be errors.
The issue appears to be in ValidatorTest.java:158. The bundle will most likely never equal null. Instead changing this line to:
if(bundle != null && bundle.getId().getIdPartAsLong() != null ) {
appears to work.
Also for the project to build without issue the Config.java should also have "http://ontoserver.csiro.au/stu3-latest/" added to VALIDATOR_TERMINOLOGY_SERVER_URLS.
The text was updated successfully, but these errors were encountered:
Thanks. I have updated the terminology server list and relevant error handling in case of no access. We cannot use STU3 terminology servers for DSTU2 resources, the HL7 Validator does not work with them.
It appears there is an issue with the default configuration for this project. If you do a fresh clone, and try mvn clean install there will be errors.
The issue appears to be in ValidatorTest.java:158. The bundle will most likely never equal null. Instead changing this line to:
if(bundle != null && bundle.getId().getIdPartAsLong() != null ) {
appears to work.
Also for the project to build without issue the Config.java should also have "http://ontoserver.csiro.au/stu3-latest/" added to VALIDATOR_TERMINOLOGY_SERVER_URLS.
The text was updated successfully, but these errors were encountered: