Merge pull request #522 from hapifhir/497-set-bundle-batch-max-pool-size

497 - Fix typo on property setter
This commit is contained in:
Kevin Dougan SmileCDR
2023-05-05 14:41:11 -04:00
committed by GitHub

View File

@@ -156,8 +156,7 @@ public class FhirServerConfigCommon {
}
//Parallel Batch GET execution settings
daoConfig.setBundleBatchPoolSize(appProperties.getBundle_batch_pool_size());
daoConfig.setBundleBatchPoolSize(appProperties.getBundle_batch_pool_max_size());
daoConfig.setBundleBatchMaxPoolSize(appProperties.getBundle_batch_pool_max_size());
return daoConfig;
}