Skip to content

Commit

Permalink
Issue #5368 - when resuming always call onFillable from newThread.
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
  • Loading branch information
lachlan-roberts committed Oct 7, 2020
1 parent 7df0dfa commit aa12999
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -521,7 +521,7 @@ public void resume()
{
ByteBuffer resume = readState.resume();
if (resume != null)
onFillable(resume);
getExecutor().execute(() -> onFillable(resume));
}

@Override
Expand Down

0 comments on commit aa12999

Please sign in to comment.