Github user zenfenan commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2509#discussion_r177499663
--- 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 --
Understood. Makes more sense now. I'll move it to `ProcessorDTO`. One
question though, I added the setter in
[DTOFactory.createProcessorDTO()](https://github.com/apache/nifi/blob/master/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/dto/DtoFactory.java#L2749-L2786),
it has to be added to the
[DTOFactory.copy()](https://github.com/apache/nifi/blob/master/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/dto/DtoFactory.java#L3721-L3744)
as well, right? Where and how the copy() call is used?
---