Merge branch 'master' into rel_5_1_0

This commit is contained in:
jamesagnew
2020-06-15 18:22:06 -04:00
5 changed files with 170 additions and 3 deletions

View File

@@ -134,7 +134,14 @@ public class FhirServerConfigCommon {
@Bean
public PartitionSettings partitionSettings() {
return new PartitionSettings();
PartitionSettings retVal = new PartitionSettings();
// Partitioning
if (HapiProperties.getPartitioningMultitenancyEnabled()) {
retVal.setPartitioningEnabled(true);
}
return retVal;
}