mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-05-03 03:43:54 +01:00
b0e2f2c770
Previously, any user that defines an AsyncConfigurer should provide the async executor as well, given that our auto-configuration no longer defines a "taskExecutor" bean. This commit extends our auto-configuration of async processing to use the "applicationTaskExecutor" bean name transparently if a user has configured an AsyncConfigurer, but did not override the getAsyncExecutor method. Closes gh-47897