Skip to content

Commit 1ea4794

Browse files
committed
Bump to HAPI 7.4.0 + fix smoke test for new HTTPClient
1 parent 12741f6 commit 1ea4794

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>ca.uhn.hapi.fhir</groupId>
1616
<artifactId>hapi-fhir</artifactId>
17-
<version>7.3.14-SNAPSHOT</version>
17+
<version>7.4.0</version>
1818
</parent>
1919

2020
<artifactId>hapi-fhir-jpaserver-starter</artifactId>

src/test/smoketest/plain_server.http

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ Content-Type: application/json
8787
});
8888
const batch_patient_location = response.body.entry[0].response.location;
8989
const indexOfHistory = batch_patient_location.lastIndexOf("/_history");
90-
trimmed_location = batch_patient_location.substring(0, indexOfHistory);
90+
client.log("Batch Patient Location: " + batch_patient_location);
91+
var trimmed_location = batch_patient_location.substring(0, indexOfHistory);
9192
trimmed_location = trimmed_location.replace("Patient/", "")
9293
client.global.set("batch_patient_id", trimmed_location);
9394
%}

0 commit comments

Comments
 (0)