Simone Bordet
Simone Bordet
Also, I think `MBeanServer` supports interceptors, it could be an alternative way of supporting this feature.
```java http2Client.setMaxConcurrentPushedStreams(100); ``` This line is not necessary, as it is on the server that you configure the max number of concurrent streams a client can open. The line above...
@kasingal we accept pull requests. Do you want to try to fix this issue and submit a pull request? Thanks!
See also: https://blog.cloudflare.com/announcing-support-for-http-2-server-push-2/ The idea is that the application adds the `Link` headers and the server, when processing the response, reads those headers to actually perform pushes before the response...
Follow up: https://blog.cloudflare.com/http-2-server-push-with-multiple-assets-per-link-header/
This would still be nice to have.
From the point of view of the client, the connection to nginx succeeded, even if the backend server (behind nginx) is not running. In this particular case (backend server not...
So if the client could not connect to nginx, how do you know you have a connection open? Seems to me that no connection was created, so there is none...
Sorry it's not clear. You see a connection ESTABLISHED *and* an exception on the client? The last paragraph is not clear: you say that the connection to nginx gets destroyed,...
Sorry it's still not clear. A websocket connection is a persistent connection until it's explicitly closed by either party. > It has been found that once the client process attempts...