Violeta Georgieva
Violeta Georgieva
> Noticed that we are compiling with jdk 8 but in mac os with apple silicon I got the following error > > ``` > > Failed to calculate the...
I'm closing this issue. If there is a WebTransport support in Netty we can reopen it. For the moment there are no plans for such support in Netty. https://github.com/netty/netty-incubator-codec-http3/issues/220
@douglashg I don't think that in Spring Boot there is an integration with `reactor-netty-incubator-quic`
We are not working on this one. I marked this with `help wanted` if somebody wants to work on this. Ideally I see a feature implemented on the level of...
@joaobologna If I understand the issue correct, we have the following: ``` client -> gateway -> target system ^ | here client drops the connection ``` If the client drops...
@joaobologna So if you include the code below, it does not cancel the request? ``` Connection connection = exchange.getAttribute(CLIENT_RESPONSE_CONN_ATTR); if (connection != null) { connection.dispose(); } ``` @spencergibb I think...
@joaobologna just to check that either you have log level trace or you invoked `.withConnection` outside of the `if (log.isTraceEnabled()) {`
@joaobologna Please excuse me for the delayed reply, but I made one change in Reactor Netty that might help here https://github.com/reactor/reactor-netty/commit/c61e556fed1c7d28cd7d389a4126ded0b74a51a0 Will you be able to try it? (0.9.10.BUILD-SNAPSHOT)
@hooverhe `AbortedException: Connection has been closed BEFORE send operation` means that we were able to obtain the connection from the pool and the connection was alive but before sending the...
@deploydesexta it is about `connection2` in the diagram below i.e. the connection established between WebClient and the target service ``` client -> Spring Cloud Gateway -> target service ^ ^...