From 0daa1a0fde627afd5712a43f658ad57fee7a0cd8 Mon Sep 17 00:00:00 2001 From: Mathieu Stempell Date: Tue, 8 Oct 2024 16:49:33 +0200 Subject: [PATCH] fix(BundleFetcher): correct API URL (#6356) --- .../src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java index 8854253c283..7d6d9bc4e8f 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java @@ -39,7 +39,7 @@ public class BundleFetcher { // START SNIPPET: loadAll // Create a context and a client FhirContext ctx = FhirContext.forR4(); - String serverBase = "http://hapi.fhr.org/baseR4"; + String serverBase = "http://hapi.fhir.org/baseR4"; IGenericClient client = ctx.newRestfulGenericClient(serverBase); // We'll populate this list