-
Notifications
You must be signed in to change notification settings - Fork 306
Fixes the broken apache common http client link. #1101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -1185,7 +1185,7 @@ How long to wait before checking for a stale connection to determine if a keepal | |||
Consider setting this value lower than the default, possibly to 0, if you get connection errors regularly. | |||
|
|||
This client is based on Apache Commons. Here's how the | |||
https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[Apache |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ga
is now forwarding to httpclient5
which we unlikely use.
Co-authored-by: kaisecheng <[email protected]>
* fix jruby bundler for test * Update .ci/logstash-run.sh Co-authored-by: Ry Biesemeyer <[email protected]> * Update .ci/logstash-run.sh Co-authored-by: Ry Biesemeyer <[email protected]> * Update .ci/logstash-run.sh Co-authored-by: Ry Biesemeyer <[email protected]>
@@ -1185,7 +1185,7 @@ How long to wait before checking for a stale connection to determine if a keepal | |||
Consider setting this value lower than the default, possibly to 0, if you get connection errors regularly. | |||
|
|||
This client is based on Apache Commons. Here's how the | |||
https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[Apache | |||
https://hc.apache.org/httpcomponents-client-4.5.x/current/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[Apache |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yaauie what is your opinion for this change? Current link is broken and there is a GA link which is forwarding to httpclient5
. We seem using 4.x versions.
Fixes the broken apache common http client link.
Closes Fix the broken
httpcomponents-client
link. #1100 1100Broken: https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)
Suggesting: https://hc.apache.org/httpcomponents-client-4.5.x/current/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)