haeuserd

Results 2 comments of haeuserd

Here is a minimal reproducable example: `application.properties`: ``` spring.cloud.gateway.mvc.http-client.type=autodetect ``` Gateway Application: ```java @SpringBootApplication public class GatewayDemoApplication { public static void main(String[] args) { SpringApplication.run(GatewayDemoApplication.class, args); } @Bean public RouterFunction...

Okay, thank you very much for clarifying this matter. I misunderstood the actual purpose and impact of `spring.cloud.gateway.mvc.http-client.type=autodetect`. I think with https://github.com/spring-cloud/spring-cloud-gateway/issues/3571 this gets much more intuitive :+1: