Merge remote-tracking branch 'origin/master' into rel_8_5-tracking

+ update HAPI to 8.5.9-SNAPSHOT
This commit is contained in:
dotasek
2025-11-04 09:27:27 -05:00
5 changed files with 21 additions and 2 deletions

View File

@@ -126,6 +126,7 @@ public class AppProperties {
private Map<String, RemoteSystem> remote_terminology_service = null;
private Boolean match_url_cache_enabled = false;
private Boolean index_storage_optimized = false;
private Boolean mark_resources_for_reindexing_upon_search_parameter_change = true;
private Integer reindex_thread_count = null;
private Integer expunge_thread_count = null;
@@ -811,6 +812,16 @@ public class AppProperties {
index_storage_optimized = theIndex_storage_optimized;
}
public boolean getMark_resources_for_reindexing_upon_search_parameter_change() {
return defaultIfNull(mark_resources_for_reindexing_upon_search_parameter_change, true);
}
public void setMark_resources_for_reindexing_upon_search_parameter_change(
Boolean mark_resources_for_reindexing_upon_search_parameter_change) {
this.mark_resources_for_reindexing_upon_search_parameter_change =
mark_resources_for_reindexing_upon_search_parameter_change;
}
public Integer getReindex_thread_count() {
return reindex_thread_count;
}

View File

@@ -190,6 +190,8 @@ public class FhirServerConfigCommon {
jpaStorageSettings.setSchedulingDisabled(!appProperties.getDao_scheduling_enabled());
jpaStorageSettings.setIndexStorageOptimized(appProperties.getIndex_storage_optimized());
jpaStorageSettings.setMatchUrlCacheEnabled(appProperties.getMatch_url_cache_enabled());
jpaStorageSettings.setMarkResourcesForReindexingUponSearchParameterChange(
appProperties.getMark_resources_for_reindexing_upon_search_parameter_change());
jpaStorageSettings.setDeleteEnabled(appProperties.getDelete_enabled());
jpaStorageSettings.setDeleteExpungeEnabled(appProperties.getDelete_expunge_enabled());
jpaStorageSettings.setExpungeEnabled(appProperties.getExpunge_enabled());