NIFI-6759: When encountering Exception during load-balanced connection communications, after closing socket, return from method rather than continuing loop

This closes #3800.
This commit is contained in:
Mark Payne 2019-10-09 14:57:11 -04:00
parent 9a496fe9d2
commit 5414cd5016
1 changed files with 1 additions and 0 deletions

View File

@ -166,6 +166,7 @@ public class ConnectionLoadBalanceServer {
logger.error("Failed to communicate with Peer {}", peerDescription, e);
eventReporter.reportEvent(Severity.ERROR, "Load Balanced Connection", "Failed to receive FlowFiles for Load Balancing due to " + e);
return;
}
}
}