483878 - Parallel requests stuck via the http client transport over HTTP/2.

This commit is contained in:
Simone Bordet 2015-12-11 17:58:31 +01:00
parent 77e0df1193
commit e674d3ec5e
2 changed files with 7 additions and 0 deletions

View File

@ -119,6 +119,12 @@ public abstract class MultiplexHttpDestination<C extends Connection> extends Htt
return true;
}
@Override
public void release(Connection connection)
{
send();
}
@Override
public void close()
{

View File

@ -57,6 +57,7 @@ public class HttpConnectionOverHTTP2 extends HttpConnection
protected void release(HttpChannel channel)
{
channels.remove(channel);
getHttpDestination().release(this);
}
@Override