Skip to content

Commit 74d69d6

Browse files
committed
Merge branch '3.4.x' into 3.5.x
See gh-47940
2 parents 5b960b2 + 5a67f57 commit 74d69d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/http/client/HttpComponentsClientHttpRequestFactoryBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public HttpComponentsClientHttpRequestFactoryBuilder withSocketConfigCustomizer(
118118
* {@link org.apache.hc.client5.http.config.ConnectionConfig.Builder}.
119119
* @param connectionConfigCustomizer the customizer to apply
120120
* @return a new {@link HttpComponentsHttpClientBuilder} instance
121-
* @since 3.5.8
121+
* @since 3.4.12
122122
*/
123123
public HttpComponentsClientHttpRequestFactoryBuilder withConnectionConfigCustomizer(
124124
Consumer<ConnectionConfig.Builder> connectionConfigCustomizer) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public HttpComponentsHttpClientBuilder withConnectionConfigCustomizer(
132132
Consumer<ConnectionConfig.Builder> connectionConfigCustomizer) {
133133
Assert.notNull(connectionConfigCustomizer, "'connectionConfigCustomizer' must not be null");
134134
return new HttpComponentsHttpClientBuilder(this.customizer, this.connectionManagerCustomizer,
135-
this.socketConfigCustomizer.andThen(this.socketConfigCustomizer), this.connectionConfigCustomizer,
135+
this.socketConfigCustomizer, this.connectionConfigCustomizer.andThen(connectionConfigCustomizer),
136136
this.defaultRequestConfigCustomizer, this.tlsSocketStrategyFactory);
137137
}
138138

0 commit comments

Comments
 (0)