NIFI-3917: Use a default value of 'false' for CSV Reader's Skip Header Line property. This closes #1819

This commit is contained in:
Mark Payne 2017-05-17 12:09:01 -04:00 committed by Matt Gilman
parent 3fd7d3b272
commit 5cf4bf61b3
No known key found for this signature in database
GPG Key ID: DF61EC19432AEE37
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ public class CSVUtils {
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.expressionLanguageSupported(false)
.allowableValues("true", "false")
.defaultValue("true")
.defaultValue("false")
.required(true)
.build();
static final PropertyDescriptor COMMENT_MARKER = new PropertyDescriptor.Builder()