Github user markap14 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2509#discussion_r177426377
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/dao/impl/StandardProcessorDAO.java
---
@@ -382,6 +382,7 @@ private void verifyUpdate(ProcessorNode processor,
ProcessorDTO processorDTO) {
configDTO.getSchedulingPeriod(),
configDTO.getSchedulingStrategy(),
configDTO.getExecutionNode(),
+ configDTO.isExecutionNodeRestricted(),
--- End diff --
This should not be checked, as it's not a configuration element that the
user is able to configure.
---