Fix up processor
This commit is contained in:
parent
f20206ad29
commit
bce71da2b0
|
@ -1,5 +1,3 @@
|
|||
package ca.uhn.fhir.batch2.coordinator;
|
||||
|
||||
/*-
|
||||
* #%L
|
||||
* HAPI FHIR JPA Server - Batch2 Task Processor
|
||||
|
@ -19,6 +17,7 @@ package ca.uhn.fhir.batch2.coordinator;
|
|||
* limitations under the License.
|
||||
* #L%
|
||||
*/
|
||||
package ca.uhn.fhir.batch2.coordinator;
|
||||
|
||||
import ca.uhn.fhir.batch2.api.IJobPersistence;
|
||||
import ca.uhn.fhir.batch2.api.IJobStepWorker;
|
||||
|
@ -57,9 +56,7 @@ public class WorkChunkProcessor {
|
|||
private final BatchJobSender myBatchJobSender;
|
||||
private final StepExecutor myStepExecutor;
|
||||
|
||||
public WorkChunkProcessor(IJobPersistence theJobPersistence,
|
||||
BatchJobSender theSender,
|
||||
IHapiTransactionService theTransactionService) {
|
||||
public WorkChunkProcessor(IJobPersistence theJobPersistence, BatchJobSender theSender) {
|
||||
myJobPersistence = theJobPersistence;
|
||||
myBatchJobSender = theSender;
|
||||
myStepExecutor = new StepExecutor(theJobPersistence);
|
||||
|
|
Loading…
Reference in New Issue