483878 - Parallel requests stuck via the http client transport over HTTP/2.
This commit is contained in:
parent
77e0df1193
commit
e674d3ec5e
|
@ -119,6 +119,12 @@ public abstract class MultiplexHttpDestination<C extends Connection> extends Htt
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void release(Connection connection)
|
||||||
|
{
|
||||||
|
send();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void close()
|
public void close()
|
||||||
{
|
{
|
||||||
|
|
|
@ -57,6 +57,7 @@ public class HttpConnectionOverHTTP2 extends HttpConnection
|
||||||
protected void release(HttpChannel channel)
|
protected void release(HttpChannel channel)
|
||||||
{
|
{
|
||||||
channels.remove(channel);
|
channels.remove(channel);
|
||||||
|
getHttpDestination().release(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue