Jetty9 - Always returning false from onReadTimeout(). Either we do not have to close, or the goAway() will close after it is written.
This commit is contained in:
parent
c229915444
commit
36729c4248
|
@ -120,9 +120,9 @@ public class SPDYAsyncConnection extends AbstractAsyncConnection implements Cont
|
||||||
@Override
|
@Override
|
||||||
protected boolean onReadTimeout()
|
protected boolean onReadTimeout()
|
||||||
{
|
{
|
||||||
if(idle)
|
if (idle)
|
||||||
session.goAway();
|
session.goAway();
|
||||||
return idle;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Session getSession()
|
protected Session getSession()
|
||||||
|
|
Loading…
Reference in New Issue