We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there.
With spring-cloud-openfeign, it is possible to specify feign configuration by client with :
feign: client: config: feignName: connectTimeout: 1000 follow-redirects: false
But when using the ApacheHttpClient, the property follow-redirects is ignored (whereas connectTimeout is ok)
I think it could be achieve by adding :
.setRedirectsEnabled(options.isFollowRedirects())
line 95 of ApacheHttpClient
The text was updated successfully, but these errors were encountered:
feel free to open a pull request. Please include tests.
Sorry, something went wrong.
#1861
No branches or pull requests
Hi there.
With spring-cloud-openfeign, it is possible to specify feign configuration by client with :
But when using the ApacheHttpClient, the property follow-redirects is ignored (whereas connectTimeout is ok)
I think it could be achieve by adding :
line 95 of ApacheHttpClient
The text was updated successfully, but these errors were encountered: