Describe the bug setSocketTimeout(ribbon.readTimeout(this.readTimeout)) while build request config, is it a mistake in in writing ?

Sample

org/springframework/cloud/netflix/ribbon/apache/RibbonLoadBalancingHttpClient.java 
`
    @Override
    public RibbonApacheHttpResponse execute(RibbonApacheHttpRequest request,
            final IClientConfig configOverride) throws Exception {
        IClientConfig config = configOverride != null ? configOverride : this.config;
        RibbonProperties ribbon = RibbonProperties.from(config);
        RequestConfig requestConfig = RequestConfig.custom()
                .setConnectTimeout(ribbon.connectTimeout(this.connectTimeout))
                .setSocketTimeout(ribbon.readTimeout(this.readTimeout))
                .setRedirectsEnabled(ribbon.isFollowRedirects(this.followRedirects))
                .setContentCompressionEnabled(ribbon.isGZipPayload(this.gzipPayload))
                .build();

        request = getSecureRequest(request, configOverride);
        final HttpUriRequest httpUriRequest = request.toRequest(requestConfig);
        final HttpResponse httpResponse = this.delegate.execute(httpUriRequest);
        return new RibbonApacheHttpResponse(httpResponse, httpUriRequest.getURI());
    }
`

Comment From: ryanjbaxter

Is it causing a problem? I think this is just different terminology between the libraries.

Comment From: spring-projects-issues

If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed.

Comment From: spring-projects-issues

Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue.