Browse Source

Merge branch '3.5.x'

pull/48068/head
Stéphane Nicoll 4 months ago
parent
commit
bb9d3ecdfb
  1. 2
      module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/HttpComponentsHttpClientBuilder.java

2
module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/HttpComponentsHttpClientBuilder.java

@ -131,7 +131,7 @@ public final class HttpComponentsHttpClientBuilder { @@ -131,7 +131,7 @@ public final class HttpComponentsHttpClientBuilder {
Consumer<ConnectionConfig.Builder> connectionConfigCustomizer) {
Assert.notNull(connectionConfigCustomizer, "'connectionConfigCustomizer' must not be null");
return new HttpComponentsHttpClientBuilder(this.customizer, this.connectionManagerCustomizer,
this.socketConfigCustomizer.andThen(this.socketConfigCustomizer), this.connectionConfigCustomizer,
this.socketConfigCustomizer, this.connectionConfigCustomizer.andThen(connectionConfigCustomizer),
this.defaultRequestConfigCustomizer, this.tlsSocketStrategyFactory);
}

Loading…
Cancel
Save