Github user kevdoran commented on the issue:
https://github.com/apache/nifi-registry/pull/133
A couple of other things I thought of:
- The default
[providers.xml](https://github.com/apache/nifi-registry/blob/7e4e9713406f3bb3ac1544b6ad69fbdd437f794c/nifi-registry-resources/src/main/resources/conf/providers.xml#L34)
should maybe be updated to include placeholders/explanation for the whitelist
properties.
- By adding the `shouldHandle(EventType)` method to the EventHookProvider
interface, should we move the conditional execution of the hook's
`handle(Event)` method to a check where it is called in
[EventService](https://github.com/apache/nifi-registry/blob/7e4e9713406f3bb3ac1544b6ad69fbdd437f794c/nifi-registry-framework/src/main/java/org/apache/nifi/registry/event/EventService.java#L73)?
---