Open doctorpangloss opened 1 year ago
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
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.