Issue #5368 - when resuming always call onFillable from newThread.

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2020-10-07 16:32:06 +11:00
parent 7df0dfa7c2
commit aa1299912d
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ public abstract class AbstractWebSocketConnection extends AbstractConnection imp
{
ByteBuffer resume = readState.resume();
if (resume != null)
onFillable(resume);
getExecutor().execute(() -> onFillable(resume));
}
@Override