mirror of https://github.com/apache/nifi.git
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:
parent
9a496fe9d2
commit
5414cd5016
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue