### Version 5.0.3 ### Context Hi. After upgrading vertx from version 5.0.1 to 5.0.3, I've started to see in logs of vertx HTTP client: ``` io.vertx.core.http.HttpClosedException - Stream was closed (GOAWAY error code = 0). ``` It might be related to fix: https://github.com/eclipse-vertx/vert.x/pull/5675 My HTTP client is initialized in following way: ``` WebClient.create(vertx, new WebClientOptions() .setProtocolVersion(HttpVersion.HTTP_2) .setSsl(true) .setUseAlpn(true) .setTrustAll(true) .setVerifyHost(false) .setConnectTimeout(5000) .setIdleTimeout(45) .setKeepAliveTimeout(60) .setHttp2MultiplexingLimit(100) .setHttp2KeepAliveTimeout(60), new PoolOptions() .setMaxLifetime(60) .setMaxLifetimeUnit(TimeUnit.SECONDS) .setHttp1MaxSize(5000) .setHttp2MaxSize(500) ); } ``` Removing setHttp2MultiplexingLimit(100) does not fix the issue. Reverting to 5.0.1 version does. I will test also with vertx 5.0.2 ### Steps to reproduce _No response_ ### Do you have a reproducer? _No response_