Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempt backport oldest first #4776

Open
wants to merge 12 commits into
base: ja_2030417_backport_subscription_opt_to_6_4
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix up processor
  • Loading branch information
tadgh committed Apr 26, 2023
commit a581656bd3021f6f10016b719729fcf8f490089a
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
package ca.uhn.fhir.batch2.config;

/*-
* #%L
* HAPI FHIR JPA Server - Batch2 Task Processor
Expand All @@ -19,6 +17,7 @@
* limitations under the License.
* #L%
*/
package ca.uhn.fhir.batch2.config;

import ca.uhn.fhir.batch2.api.IJobCoordinator;
import ca.uhn.fhir.batch2.api.IJobMaintenanceService;
Expand Down Expand Up @@ -59,8 +58,8 @@ public JobDefinitionRegistry batch2JobDefinitionRegistry() {
}

@Bean
public WorkChunkProcessor jobStepExecutorService(BatchJobSender theBatchJobSender, IHapiTransactionService theTransactionService) {
return new WorkChunkProcessor(myPersistence, theBatchJobSender, theTransactionService);
public WorkChunkProcessor jobStepExecutorService(BatchJobSender theBatchJobSender) {
return new WorkChunkProcessor(myPersistence, theBatchJobSender);
}

@Bean
Expand Down