Fix for issue #1819 where TransportClient (sniff) fails to reconnect to nodes once removed if all nodes are removed

This commit is contained in:
Holden Karau 2012-03-28 21:33:40 -07:00 committed by Shay Banon
parent b2918d7c2b
commit 9d728fb448
1 changed files with 2 additions and 1 deletions

View File

@ -326,7 +326,8 @@ public class TransportClientNodesService extends AbstractComponent {
try {
transportService.connectToNode(listedNode);
} catch (Exception e) {
logger.debug("failed to connect to node [{}], removed from nodes list", e, listedNode);
logger.debug("failed to connect to node [{}], ignoring...", e, listedNode);
latch.countDown();
return;
}
}