mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
d404fdafa0
Prior to this commit, ReactorResourceFactory was not restarted properly when the ApplicationContext was resumed by the TestContext Framework after a context pause. The reason is that the managed LoopResources were disposed when ConfigurableApplicationContext.pause() was invoked and reacquired when ConfigurableApplicationContext.restart() was invoked. To address that, this commit overrides isPauseable() in ReactorResourceFactory to return false, thereby avoiding participation in pause scenarios. Closes gh-35585