Skip to content

Commit

Permalink
fix async batch size
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Stevens committed Dec 24, 2024
1 parent 4a35fa1 commit 44b49eb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,16 +108,16 @@ public ITermLoaderSvc termLoaderService(

@Bean
public ResourceMergeService resourceMergeService(
DaoRegistry theDaoRegistry,
IReplaceReferencesSvc theReplaceReferencesSvc,
HapiTransactionService theHapiTransactionService,
IRequestPartitionHelperSvc theRequestPartitionHelperSvc,
IJobCoordinator theJobCoordinator,
Batch2TaskHelper theBatch2TaskHelper,
JpaStorageSettings theStorageSettings) {
DaoRegistry theDaoRegistry,
IReplaceReferencesSvc theReplaceReferencesSvc,
HapiTransactionService theHapiTransactionService,
IRequestPartitionHelperSvc theRequestPartitionHelperSvc,
IJobCoordinator theJobCoordinator,
Batch2TaskHelper theBatch2TaskHelper,
JpaStorageSettings theStorageSettings) {

return new ResourceMergeService(
theStorageSettings,
theStorageSettings,
theDaoRegistry,
theReplaceReferencesSvc,
theHapiTransactionService,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ public class ResourceMergeService {
private final MergeValidationService myMergeValidationService;

public ResourceMergeService(
JpaStorageSettings theStorageSettings,
DaoRegistry theDaoRegistry,
IReplaceReferencesSvc theReplaceReferencesSvc,
IHapiTransactionService theHapiTransactionService,
IRequestPartitionHelperSvc theRequestPartitionHelperSvc,
IJobCoordinator theJobCoordinator,
Batch2TaskHelper theBatch2TaskHelper) {
JpaStorageSettings theStorageSettings,
DaoRegistry theDaoRegistry,
IReplaceReferencesSvc theReplaceReferencesSvc,
IHapiTransactionService theHapiTransactionService,
IRequestPartitionHelperSvc theRequestPartitionHelperSvc,
IJobCoordinator theJobCoordinator,
Batch2TaskHelper theBatch2TaskHelper) {
myStorageSettings = theStorageSettings;

myPatientDao = theDaoRegistry.getResourceDao(Patient.class);
Expand Down

0 comments on commit 44b49eb

Please sign in to comment.