Issue #3060 WriteFlusher fails callback on all Throwables

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2018-11-06 09:29:43 +01:00
parent 67cef441b2
commit d455ac6aca
1 changed files with 2 additions and 2 deletions

View File

@ -294,7 +294,7 @@ abstract public class WriteFlusher
else
fail(callback);
}
catch (IOException e)
catch (Throwable e)
{
if (DEBUG)
LOG.debug("write exception", e);
@ -366,7 +366,7 @@ abstract public class WriteFlusher
else
fail(callback);
}
catch (IOException e)
catch (Throwable e)
{
if (DEBUG)
LOG.debug("completeWrite exception", e);