Make java default as well for people who dont update their app properties on upgrade

This commit is contained in:
Tadgh
2024-09-27 09:22:26 -04:00
parent bfac1d0063
commit 5c4ada54ae
2 changed files with 2 additions and 1 deletions

View File

@@ -104,7 +104,7 @@ public class AppProperties {
private final List<String> custom_provider_classes = new ArrayList<>();
private List<Integer> search_prefetch_thresholds = new ArrayList<>();
private List<Integer> search_prefetch_thresholds = List.of(13, 503, 2003, -1);
public List<String> getCustomInterceptorClasses() {

View File

@@ -150,6 +150,7 @@ public class FhirServerConfigCommon {
jpaStorageSettings.setExpungeEnabled(appProperties.getExpunge_enabled());
jpaStorageSettings.setLanguageSearchParameterEnabled(appProperties.getLanguage_search_parameter_enabled());
jpaStorageSettings.setSearchPreFetchThresholds(appProperties.getSearch_prefetch_thresholds());
Integer maxFetchSize = appProperties.getMax_page_size();