Github user markap14 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2509#discussion_r177427268
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/ProcessorConfigDTO.java
---
@@ -44,6 +44,7 @@
private String comments;
private String customUiUrl;
private Boolean lossTolerant;
+ private Boolean executionNodeRestricted;
--- End diff --
This is not something that is configurable, so I think we want to put this
in the ProcessorDTO, not the ProcessorConfigDTO. This is where we store other
'flags' about a processor, such as restricted, deprecation, supportsBatching,
etc, etc.
---