Github user markap14 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2509#discussion_r180211507
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
---
@@ -215,9 +215,10 @@
}
var executionNode = details.config['executionNode'];
+ var executionNodeRestricted =
details.executionNodeRestricted
// only show the execution-node when applicable
- if (nfClusterSummary.isClustered() || executionNode
=== 'PRIMARY') {
+ if (nfClusterSummary.isClustered() &&
executionNodeRestricted !== true) {
--- End diff --
I think we need the executionNode === 'PRIMARY' to still be considered here
as well.
---