From e752a99366526807b76ca8500a2c4707f21fbceb Mon Sep 17 00:00:00 2001 From: Sean McIlvenna Date: Mon, 11 Feb 2019 16:44:43 -0800 Subject: [PATCH] Using server_address property for tester config because otherwise the UI may use the wrong address --- src/main/java/ca/uhn/fhir/jpa/starter/FhirTesterConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/FhirTesterConfig.java b/src/main/java/ca/uhn/fhir/jpa/starter/FhirTesterConfig.java index 8a99968..f7d8a77 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/FhirTesterConfig.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/FhirTesterConfig.java @@ -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; }