You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/12/24 08:45:50 UTC

(camel) branch main updated: CAMEL-19849: Added docs about limitation

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new d1ae54e663a CAMEL-19849: Added docs about limitation
d1ae54e663a is described below

commit d1ae54e663a0307785f4e54927f09be787e0d7d8
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Dec 24 09:45:36 2023 +0100

    CAMEL-19849: Added docs about limitation
---
 components/camel-tarfile/src/main/docs/tarFile-dataformat.adoc | 2 ++
 components/camel-zipfile/src/main/docs/zipFile-dataformat.adoc | 5 +++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/components/camel-tarfile/src/main/docs/tarFile-dataformat.adoc b/components/camel-tarfile/src/main/docs/tarFile-dataformat.adoc
index 19c9a7ff955..5bb90958e3b 100644
--- a/components/camel-tarfile/src/main/docs/tarFile-dataformat.adoc
+++ b/components/camel-tarfile/src/main/docs/tarFile-dataformat.adoc
@@ -107,6 +107,8 @@ like this
      .end();
 ----------------------------------------------------------------------------------------------------
 
+IMPORTANT: You cannot use TarSplitter in _parallel_ mode with the splitter.
+
 
 == Aggregate
 
diff --git a/components/camel-zipfile/src/main/docs/zipFile-dataformat.adoc b/components/camel-zipfile/src/main/docs/zipFile-dataformat.adoc
index 3a694c711fb..7958b7353e8 100644
--- a/components/camel-zipfile/src/main/docs/zipFile-dataformat.adoc
+++ b/components/camel-zipfile/src/main/docs/zipFile-dataformat.adoc
@@ -100,8 +100,7 @@ from("file:src/test/resources/org/apache/camel/dataformat/zipfile/?delay=1000&no
     .end();
 ----
 
-Or you can use the ZipSplitter as an expression for splitter directly
-like this
+Or you can use the ZipSplitter as an expression for splitter directly like this:
 
 [source,java]
 ----
@@ -111,6 +110,8 @@ from("file:src/test/resources/org/apache/camel/dataformat/zipfile?delay=1000&noo
     .end();
 ----
 
+IMPORTANT: You cannot use ZipSplitter in _parallel_ mode with the splitter.
+
 == Aggregate
 
 [NOTE]