Issue #3060 WriteFlusher fails callback on all Throwables
Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
parent
67cef441b2
commit
d455ac6aca
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue