Github user mattyb149 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2397#discussion_r161256592
--- Diff:
nifi-nar-bundles/nifi-extension-utils/nifi-reporting-utils/src/main/java/org/apache/nifi/reporting/util/provenance/ProvenanceEventConsumer.java
---
@@ -256,9 +297,15 @@ private boolean isFilteringEnabled() {
}
}
}
+ if (!eventTypesExclude.isEmpty() &&
eventTypesExclude.contains(provenanceEventRecord.getEventType())) {
+ continue;
--- End diff --
Yes that's a good point, I just co-located them with their inclusionary
counterparts. Will move them to the top.
---