mirror of https://github.com/apache/cassandra
Fix thrift_hsha_test dtest on Windows
Patch by pmotta; reviewed by jmckenzie for CASSANDRA-10076
This commit is contained in:
parent
ab6287612e
commit
dd19a7fcfd
|
|
@ -293,7 +293,7 @@ public class OutboundTcpConnection extends Thread
|
|||
catch (Exception e)
|
||||
{
|
||||
disconnect();
|
||||
if (e instanceof IOException)
|
||||
if (e instanceof IOException || e.getCause() instanceof IOException)
|
||||
{
|
||||
if (logger.isDebugEnabled())
|
||||
logger.debug("error writing to {}", poolReference.endPoint(), e);
|
||||
|
|
|
|||
Loading…
Reference in New Issue