SSchrodingerCat
SSchrodingerCat
@OlgaMaciaszek Thank for reply. I test `3.1.x version`, find we may override `HttpClientConnectionManager` config Unintentionally. ### example here is a simple example: pom file ```xml 4.0.0 org.springframework.boot spring-boot-starter-parent 2.6.7 com.example...
I think there is a bug. in `FeignAutoConfiguration` class, defined how to inject HttpClient: ```java @Configuration(proxyBeanMethods = false) @ConditionalOnClass(ApacheHttpClient.class) @ConditionalOnMissingBean(CloseableHttpClient.class) @ConditionalOnProperty(value = "spring.cloud.openfeign.httpclient.enabled", matchIfMissing = true) @Conditional(HttpClient5DisabledConditions.class) protected static class...