You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2019/07/18 08:48:45 UTC

[GitHub] [nifi] turcsanyip commented on a change in pull request #3504: NIFI-6318: Support EL in CSV formatting properties

turcsanyip commented on a change in pull request #3504: NIFI-6318: Support EL in CSV formatting properties
URL: https://github.com/apache/nifi/pull/3504#discussion_r304803815
 
 

 ##########
 File path: nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/src/main/java/org/apache/nifi/csv/CSVUtils.java
 ##########
 @@ -97,9 +105,10 @@
         .build();
     public static final PropertyDescriptor ESCAPE_CHAR = new PropertyDescriptor.Builder()
         .name("Escape Character")
-        .description("The character that is used to escape characters that would otherwise have a specific meaning to the CSV Parser.")
+        .description("The character that is used to escape characters that would otherwise have a specific meaning to the CSV Parser. If the property has been specified via Expression Language " +
+                "but the expression gets evaluated to an invalid Escape Character at runtime, then it will be skipped and the default Escape Character will be used.")
         .addValidator(new CSVValidators.SingleCharacterValidator())
 
 Review comment:
   I kept the original validators.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services