Issue #1719 - Improve handling of HTTP/2 queued requests.

Since for HTTP/2 EWYK has been forced to run in PEC mode, we need the
onFillable() callback to be non blocking.
This commit is contained in:
Simone Bordet 2017-08-14 11:08:39 +02:00
parent db249c09d0
commit 64d5131a2a

View File

@ -272,7 +272,7 @@ public class HTTP2Connection extends AbstractConnection
@Override
public InvocationType getInvocationType()
{
return InvocationType.EITHER;
return InvocationType.NON_BLOCKING;
}
}
}