mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 00:29:01 +00:00
ErrorPageFilter is itself an EmbeddedServletContainerFactory but it runs in a non-embedded container. Any component that assumes the presence of an EmbeddedServletContainerFactory implies we are running embedded is therefore invalid. WebSocketAutoConfiguration had that problem. Fixes gh-551