File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
src/main/java/ca/uhn/fhir/jpa/starter/common Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 55
66 <properties >
77 <java .version>17</java .version>
8- <hapi .fhir.jpa.server.starter.revision>4 </hapi .fhir.jpa.server.starter.revision>
9- <clinical-reasoning .version>3.28 .0</clinical-reasoning .version>
8+ <hapi .fhir.jpa.server.starter.revision>1 </hapi .fhir.jpa.server.starter.revision>
9+ <clinical-reasoning .version>4.0 .0</clinical-reasoning .version>
1010 </properties >
1111
1212 <!-- one-liner to take you to the cloud with settings form the application.yaml file: -->
2020 <parent >
2121 <groupId >ca.uhn.hapi.fhir</groupId >
2222 <artifactId >hapi-fhir</artifactId >
23- <version >8.4 .0</version >
23+ <version >8.6 .0</version >
2424 </parent >
2525
2626 <artifactId >hapi-fhir-jpaserver-starter</artifactId >
Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ public PartitionModeConfigurer(
3434 myPartitionSettings .setUnnamedPartitionMode (true );
3535 } else if (partitioning .getRequest_tenant_partitioning_mode ()) {
3636 ourLog .info ("Partitioning mode enabled in: Request tenant partitioning mode" );
37- myRestfulServer .registerInterceptor (new RequestTenantPartitionInterceptor ());
37+ RequestTenantPartitionInterceptor tenantPartitionInterceptor = new RequestTenantPartitionInterceptor ();
38+ tenantPartitionInterceptor .setPartitionSettings (myPartitionSettings );
39+ myRestfulServer .registerInterceptor (tenantPartitionInterceptor );
3840 myRestfulServer .setTenantIdentificationStrategy (new UrlBaseTenantIdentificationStrategy ());
3941 }
4042
You can’t perform that action at this time.
0 commit comments