Github user JohannesDaniel commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2199#discussion_r145612359
--- Diff:
nifi-nar-bundles/nifi-solr-bundle/nifi-solr-processors/src/main/java/org/apache/nifi/processors/solr/GetSolr.java
---
@@ -126,6 +126,14 @@
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
+ public static final PropertyDescriptor DATE_FILTER = new
PropertyDescriptor
+ .Builder().name("Initial Date Filter")
+ .displayName("Initial Date Filter")
+ .description("Date value to filter results. Documents with an
earlier date will not be fetched. The format has to correspond to the date
pattern of Solr 'YYYY-MM-DDThh:mm:ssZ'")
+ .required(false)
+ .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+ .build();
+
--- End diff --
This property should make it quite obvious, how backwards compatibility can
be achieved. Additionally, I will describe it in the documentation. BTW: Where
can I change descriptions of processor usage? Did not find them in folder
nifi-docs...
---