Merge branch '6.1.x'

This commit is contained in:
Juergen Hoeller
2024-02-20 15:43:24 +01:00
2 changed files with 9 additions and 9 deletions

View File

@@ -192,7 +192,7 @@ public class SimpleAsyncTaskScheduler extends SimpleAsyncTaskExecutor implements
}
private Runnable scheduledTask(Runnable task) {
return () -> execute(task);
return () -> execute(new DelegatingErrorHandlingRunnable(task, TaskUtils.LOG_AND_PROPAGATE_ERROR_HANDLER));
}
private Runnable taskOnSchedulerThread(Runnable task) {