Github user markap14 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2509#discussion_r177423705
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/audit/ProcessorAuditor.java
---
@@ -379,6 +380,9 @@ public Action generateAuditRecord(ProcessorNode
processor, Operation operation,
if (newConfig.getExecutionNode() != null) {
values.put(EXECUTION_NODE,
processor.getExecutionNode().name());
}
+ if (newConfig.isExecutionNodeRestricted() != null) {
--- End diff --
I don't believe this is needed here - it's not a configurable value. It's
hardcoded by the developer.
---