Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static class SpringBootBatchConfiguration extends DefaultBatchConfiguration {

private final PlatformTransactionManager transactionManager;

private final TaskExecutor taskExector;
private final TaskExecutor taskExecutor;

private final BatchProperties properties;

Expand All @@ -123,7 +123,7 @@ static class SpringBootBatchConfiguration extends DefaultBatchConfiguration {
ObjectProvider<JobParametersConverter> jobParametersConverter) {
this.dataSource = batchDataSource.getIfAvailable(() -> dataSource);
this.transactionManager = batchTransactionManager.getIfAvailable(() -> transactionManager);
this.taskExector = batchTaskExecutor.getIfAvailable();
this.taskExecutor = batchTaskExecutor.getIfAvailable();
this.properties = properties;
this.batchConversionServiceCustomizers = batchConversionServiceCustomizers.orderedStream().toList();
this.executionContextSerializer = executionContextSerializer.getIfAvailable();
Expand Down Expand Up @@ -180,7 +180,7 @@ protected JobParametersConverter getJobParametersConverter() {

@Override
protected TaskExecutor getTaskExecutor() {
return (this.taskExector != null) ? this.taskExector : super.getTaskExecutor();
return (this.taskExecutor != null) ? this.taskExecutor : super.getTaskExecutor();
}

}
Expand Down