Github user markap14 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2947#discussion_r222331356
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/FlowController.java
---
@@ -3596,6 +3600,19 @@ public void startTransmitting(final RemoteGroupPort
remoteGroupPort) {
}
}
+ public void stopTransmitting(final RemoteGroupPort remoteGroupPort) {
--- End diff --
Thanks for mentioning that. This was to address NIFI-5619. The issue was
not directly related to Load Balancing but was discovered while testing this.
Because this fix was needed in order to properly test this PR, I went ahead and
did it in this PR instead of trying to create a separate PR, then wait for that
to get merged, etc., etc. I intended to mention NIFI-5619 in the commit message
but forgot to. But NIFI-5619 does also have a link to this PR as the PR
addressing the issue.
---