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
4.3.7
The GrpcClient constructors allow you to pass in custom HttpOptions.
Because httpOptions.setHttp2ClearTextUpgrade(false) must be set, the constructor should do it for you, like the default constructor does.
httpOptions.setHttp2ClearTextUpgrade(false)
GrpcClient.client(vertx, new HttpClientOptions())
GrpcClient.client(vertx, new HttpClientOptions().setHttp2ClearTextUpgrade(false))
This is a known issue. It is never valid to have this set to true (or the default) on a GrpcClient.
true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
4.3.7
Context
The GrpcClient constructors allow you to pass in custom HttpOptions.
Because
httpOptions.setHttp2ClearTextUpgrade(false)
must be set, the constructor should do it for you, like the default constructor does.Steps to reproduce
GrpcClient.client(vertx, new HttpClientOptions())
.GrpcClient.client(vertx, new HttpClientOptions().setHttp2ClearTextUpgrade(false))
resolves the issue.This is a known issue. It is never valid to have this set to
true
(or the default) on a GrpcClient.The text was updated successfully, but these errors were encountered: