HBASE-8919 TestReplicationQueueFailover (and Compressed) can fail because the recovered queue
gets stuck on ClosedByInterruptException (first try, getting more debug) git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1501924 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e79eefe78b
commit
d390841912
|
@ -158,6 +158,7 @@ public class Replication implements WALActionsListener,
|
|||
this.replicationSink.stopReplicationSinkServices();
|
||||
}
|
||||
}
|
||||
scheduleThreadPool.shutdown();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -796,7 +796,7 @@ public class ReplicationSource extends Thread
|
|||
if (ex instanceof RemoteException) {
|
||||
ex = ((RemoteException) ex).unwrapRemoteException();
|
||||
}
|
||||
LOG.info("Slave cluster looks down: " + ex.getMessage());
|
||||
LOG.info("Slave cluster looks down: " + ex.getMessage(), ex);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue