HBASE-17698 ReplicationEndpoint choosing sinks

Signed-off-by: Andrew Purtell <apurtell@apache.org>
This commit is contained in:
Karan Mehta 2017-03-06 15:56:24 -08:00 committed by Andrew Purtell
parent 1c4d9c8965
commit 80381f3944
1 changed files with 2 additions and 2 deletions

View File

@ -294,8 +294,8 @@ public class HBaseInterClusterReplicationEndpoint extends HBaseReplicationEndpoi
+ "Replication cannot proceed without losing data.", sleepMultiplier)) { + "Replication cannot proceed without losing data.", sleepMultiplier)) {
sleepMultiplier++; sleepMultiplier++;
} }
} else if (ioe instanceof SaslException) { } else {
LOG.warn("Peer encountered SaslException, rechecking all sinks: ", ioe); LOG.warn("Peer encountered RemoteException, rechecking all sinks: ", ioe);
replicationSinkMgr.chooseSinks(); replicationSinkMgr.chooseSinks();
} }
} else { } else {