mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
897557fd1b
The tests were doing Callable async request processing in the main thread which was already bound (via HandlerInterceptor#preProcess). This leads to an ISE from TransactionSynchronizationManager#bindResource but it went unnoticed because there is no Servlet container and no async dispatch to continue processing. See gh-24835