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
JettyConnector: translateRequest makes a call to get readtimeout as below
final Object readTimeout = clientRequest.getConfiguration().getProperties().get(ClientProperties.READ_TIMEOUT);
This means that readtimout is always coming from Client and is not set per request (invocation). I think correct thing to do is
final int socketTimeout = clientRequest.resolveProperty(ClientProperties.READ_TIMEOUT, -1);
this would pick request scope value
The same issue applies to Netty connector as well
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
JettyConnector: translateRequest makes a call to get readtimeout as below
final Object readTimeout = clientRequest.getConfiguration().getProperties().get(ClientProperties.READ_TIMEOUT);
This means that readtimout is always coming from Client and is not set per request (invocation). I think correct thing to do is
final int socketTimeout = clientRequest.resolveProperty(ClientProperties.READ_TIMEOUT, -1);
this would pick request scope value
The same issue applies to Netty connector as well
The text was updated successfully, but these errors were encountered: