Skip to content

Commit 70da0dc

Browse files
committed
Bump HAPI version, switch to DatabaseBinaryContentStorageSvcImpl
1 parent 79c43b4 commit 70da0dc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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.1.8-SNAPSHOT</version>
17+
<version>7.1.10-SNAPSHOT</version>
1818
</parent>
1919

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

src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import ca.uhn.fhir.jpa.api.config.JpaStorageSettings;
44
import ca.uhn.fhir.jpa.binary.api.IBinaryStorageSvc;
5-
import ca.uhn.fhir.jpa.binstore.DatabaseBlobBinaryStorageSvcImpl;
5+
import ca.uhn.fhir.jpa.binstore.DatabaseBinaryContentStorageSvcImpl;
66
import ca.uhn.fhir.jpa.config.HibernatePropertiesProvider;
77
import ca.uhn.fhir.jpa.model.config.PartitionSettings;
88
import ca.uhn.fhir.jpa.model.config.PartitionSettings.CrossPartitionReferenceMode;
@@ -88,7 +88,7 @@ public FhirServerConfigCommon(AppProperties appProperties) {
8888
}
8989

9090
/**
91-
* Configure FHIR properties around the the JPA server via this bean
91+
* Configure FHIR properties around the JPA server via this bean
9292
*/
9393
@Bean
9494
public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
@@ -261,7 +261,7 @@ protected StorageSettings storageSettings(AppProperties appProperties, JpaStorag
261261
@Lazy
262262
@Bean
263263
public IBinaryStorageSvc binaryStorageSvc(AppProperties appProperties) {
264-
DatabaseBlobBinaryStorageSvcImpl binaryStorageSvc = new DatabaseBlobBinaryStorageSvcImpl();
264+
DatabaseBinaryContentStorageSvcImpl binaryStorageSvc = new DatabaseBinaryContentStorageSvcImpl();
265265

266266
if (appProperties.getMax_binary_size() != null) {
267267
binaryStorageSvc.setMaximumBinarySize(appProperties.getMax_binary_size());

0 commit comments

Comments
 (0)