Github user markap14 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2509#discussion_r177871034
--- 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 --
Yes, it will need to be added to DtoFactory.copy() as well. That method is
used when you copy & paste a processor for example.
---