Github user ijokarumawak commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2194#discussion_r144811262
--- Diff:
nifi-nar-bundles/nifi-poi-bundle/nifi-poi-processors/src/main/java/org/apache/nifi/processors/poi/ConvertExcelToCSVProcessor.java
---
@@ -101,6 +100,34 @@
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
+ public static final PropertyDescriptor FIRST_ROW = new
PropertyDescriptor
--- End diff --
If I understand the behavior correctly, this property should be named like
'Number of skip rows'. Also, we should mention that skips empty rows
automatically regardless to this setting.
---