Skip to content

Commit

Permalink
Fix for issue #1819 where TransportClient (sniff) fails to reconnect …
Browse files Browse the repository at this point in the history
…to nodes once removed if all nodes are removed
  • Loading branch information
Holden Karau authored and kimchy committed Mar 29, 2012
1 parent d9ff8ba commit 67927a1
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -326,7 +326,8 @@ public void run() {
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;
}
}
Expand Down

0 comments on commit 67927a1

Please sign in to comment.