mirror of https://github.com/apache/nifi.git
NIFI-3917: Use a default value of 'false' for CSV Reader's Skip Header Line property. This closes #1819
This commit is contained in:
parent
3fd7d3b272
commit
5cf4bf61b3
|
@ -70,7 +70,7 @@ public class CSVUtils {
|
||||||
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
|
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
|
||||||
.expressionLanguageSupported(false)
|
.expressionLanguageSupported(false)
|
||||||
.allowableValues("true", "false")
|
.allowableValues("true", "false")
|
||||||
.defaultValue("true")
|
.defaultValue("false")
|
||||||
.required(true)
|
.required(true)
|
||||||
.build();
|
.build();
|
||||||
static final PropertyDescriptor COMMENT_MARKER = new PropertyDescriptor.Builder()
|
static final PropertyDescriptor COMMENT_MARKER = new PropertyDescriptor.Builder()
|
||||||
|
|
Loading…
Reference in New Issue