Julien Viet
Julien Viet
thank you @lucamolteni
@marekscholle if the response has been sent to the client (`resp.end()`) before the underlying HTTP/1 connection is closed then indeed the exception handler should not be called. At the HTTP...
@kitd thank I'll look at it
maybe there should be an option where vertx allows pseudo headers to be used in a multimap headers for HTTP/2 that would be used in such case That would allow...
I think instead we could have a boolean `validate` when getting an header map that returns a map that does not validate when adding headers
from the client perspective in 5.x (I don't know yet if that is valid for 4.x) we can allow to set a null authority on the client request that will...
@bowbahdoe there is another contrib to bring JPMS support https://github.com/HdrHistogram/HdrHistogram/pull/205 to HDR histogram
@diggernet can you provide a PR for this ?
I can apply the patch myself, however can you provide a test for it ? 5.0 GA is ready, however it depends on Netty 4.2 GA release that should be...
here is what I think happens: the reproducer shows ```java public Multi sayHello(HelloRequest request) { Stream inputs = IntStream.rangeClosed(0, COUNT - 1) .mapToObj(it -> HelloReply.newBuilder().setMessage(buildTestString(it)).build()); Multi multi = Multi.createFrom().emitter(multiEmitter ->...