mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-27 12:39:03 +00:00
Update `NamedPipeSocket` so that `connect` methods are now no-ops. This restores the behavior of Spring Boot 3.3 which previously handled the case by overriding `ConnectionSocketFactory.connectSocket`. The newer HTTP client code uses the `DetachedSocketFactory` interface which doesn't offer a method that we can override, so instead we must change the socket implementation itself. Fixes gh-42952