Pierre-Alban DEWITTE created CAMEL-6198:
-------------------------------------------

             Summary: CsvConfig.setDelimiter(Char char) has no effect
                 Key: CAMEL-6198
                 URL: https://issues.apache.org/jira/browse/CAMEL-6198
             Project: Camel
          Issue Type: Bug
          Components: camel-core
    Affects Versions: 2.10.4
         Environment: Linux
            Reporter: Pierre-Alban DEWITTE
            Priority: Trivial


With code abode csvConfig.setDelimiter(';') has no effect
CsvDataFormat csv = new CsvDataFormat();
                CSVConfig csvConfig = new CSVConfig();
                csvConfig.setDelimiter(';');
                csvConfig.setFieldHeader(true);
                
                
                from("file://in/?include=.*\\.csv).unmarshal(csv).process(new 
MyProcessor());

When i add csv.setDelimiter(";"); everything works fine.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to