File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
spring-ws-core/src/main/java/org/springframework/ws/transport/http Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -211,13 +211,12 @@ public CloseableHttpClient getObject() throws Exception {
211
211
if (this .connectionManagerBuilderCustomizer != null ) {
212
212
this .connectionManagerBuilderCustomizer .customize (connectionManagerBuilder );
213
213
}
214
-
215
214
this .connectionManager = connectionManagerBuilder .build ();
216
215
217
216
applyMaxConnectionsPerHost (connectionManager );
218
217
219
218
RequestConfig .Builder requestConfigBuilder = RequestConfig .custom () //
220
- .setConnectionRequestTimeout (Timeout .of (connectionTimeout )) //
219
+ .setConnectTimeout (Timeout .of (connectionTimeout )) //
221
220
.setResponseTimeout (Timeout .of (readTimeout ));
222
221
223
222
HttpClientBuilder httpClientBuilder = HttpClientBuilder .create () //
You can’t perform that action at this time.
0 commit comments