Speculative fix for #2233

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2018-03-13 16:15:28 +11:00
parent be1a011120
commit f35bd03810
1 changed files with 2 additions and 4 deletions

View File

@ -527,12 +527,10 @@ public class SslConnection extends AbstractConnection
// don't bother writing, just notify of close // don't bother writing, just notify of close
getWriteFlusher().onClose(); getWriteFlusher().onClose();
} }
// Else,
else else
{ {
// try to flush what is pending // Try again
// execute to avoid recursion _runCompleteWrite.run();
getExecutor().execute(_runCompleteWrite);
} }
} }
} }