Github user bitgaoshu commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/334#discussion_r132887998
--- Diff:
src/java/main/org/apache/zookeeper/server/quorum/QuorumCnxManager.java ---
@@ -647,11 +648,11 @@ public void run() {
numRetries = 0;
}
} catch (IOException e) {
- if (shutdown) {
- break;
- }
LOG.error("Exception while listening", e);
- numRetries++;
+ if (!(e instanceof SocketTimeoutException)) {
+ numRetries++;
+ }
+ }finally {
--- End diff --
it's my first time to commit code on github. i open a new
[pr](https://github.com/apache/zookeeper/pull/336), which has fixed according
to your opinion. I am sorry for my inconvenience.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---