Using server_address property for tester config because otherwise the UI may use the wrong address

This commit is contained in:
Sean McIlvenna
2019-02-11 16:44:43 -08:00
parent ae51c08722
commit e752a99366

View File

@@ -41,7 +41,7 @@ public class FhirTesterConfig {
.addServer()
.withId(HapiProperties.getServerId())
.withFhirVersion(HapiProperties.getFhirVersion())
.withBaseUrl("${serverBase}" + HapiProperties.getServerBase())
.withBaseUrl(HapiProperties.getServerAddress())
.withName(HapiProperties.getServerName());
return retVal;
}