Github user zenfenan commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2509#discussion_r182626447
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-configuration.js
---
@@ -741,8 +742,8 @@
}
});
- // show the execution node option if we're cluster or
we're currently configured to run on the primary node only
- if (nfClusterSummary.isClustered() || executionNode
=== 'PRIMARY') {
+ // show the execution node option if we're clustered
and execution node is not restricted to run only in primary node
+ if (nfClusterSummary.isClustered() &&
executionNodeRestricted !== true) {
--- End diff --
@markap14 @mcgilman I've tested the above and verified it to be working as
expected. Request you to review this approach and if you don't have any
concerns, I'll make the changes and commit it.
---