Hello Nifi Devs, Every Processor and ControllerService inherits from ConfigurableComponent [1] and therefore has onPropertyModified() [2] as well.
Currently, this method is run at nifi startup on each property with a value, even if the value is the default. (i.e. and it has never been anything other than the default value). Is this a bug or a feature? [1] https://github.com/apache/nifi/blob/master/nifi-api/src/main/java/org/apache/nifi/components/ConfigurableComponent.java [2] https://github.com/apache/nifi/blob/master/nifi-api/src/main/java/org/apache/nifi/components/ConfigurableComponent.java#L68 Thanks, Nissim Shiman