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 2019/10/22 21:04:12 UTC

[camel] branch master updated (abd6b1d -> 657eb5c)

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

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


    from abd6b1d  Updated Seda-component.adoc (#3273)
     new 10902f4  CAMEL-13992: Fixed wrong link to example as its in core so it was a different place
     new 657eb5c  Regen

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 components/camel-seda/src/main/docs/seda-component.adoc |  4 ++--
 docs/components/modules/ROOT/pages/seda-component.adoc  | 11 +++++++++++
 docs/components/modules/ROOT/pages/sql-component.adoc   |  2 +-
 3 files changed, 14 insertions(+), 3 deletions(-)


[camel] 02/02: Regen

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 657eb5cfbe4028dda081e5727749bf9e0154b454
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Oct 22 23:03:55 2019 +0200

    Regen
---
 docs/components/modules/ROOT/pages/sql-component.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/components/modules/ROOT/pages/sql-component.adoc b/docs/components/modules/ROOT/pages/sql-component.adoc
index c2bf6e9..96d3868 100644
--- a/docs/components/modules/ROOT/pages/sql-component.adoc
+++ b/docs/components/modules/ROOT/pages/sql-component.adoc
@@ -320,7 +320,7 @@ header _are_ represented by a `?` instead of a `pass:[#]` symbol
 |===
 
 When performing `insert` operations, the SQL Component stores the rows
-with the generated keys and number of these rown in the following
+with the generated keys and number of these rows in the following
 message headers:
 
 [cols="1,3"]


[camel] 01/02: CAMEL-13992: Fixed wrong link to example as its in core so it was a different place

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 10902f43e01853ca78234e716a64e7f0e57ea31e
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Oct 22 23:03:46 2019 +0200

    CAMEL-13992: Fixed wrong link to example as its in core so it was a different place
---
 components/camel-seda/src/main/docs/seda-component.adoc |  4 ++--
 docs/components/modules/ROOT/pages/seda-component.adoc  | 11 +++++++++++
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/components/camel-seda/src/main/docs/seda-component.adoc b/components/camel-seda/src/main/docs/seda-component.adoc
index 8c3b38b..f63dcab 100644
--- a/components/camel-seda/src/main/docs/seda-component.adoc
+++ b/components/camel-seda/src/main/docs/seda-component.adoc
@@ -238,14 +238,14 @@ to the original caller.
 
 [source,java]
 ----
-include::{examplesdir}/components/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java[tags=example]
+include::{examplesdir}/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java[tags=example]
 ----
 
 Here we send a Hello World message and expects the reply to be OK.
 
 [source,java]
 ----
-include::{examplesdir}/components/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java[tags=example]
+include::{examplesdir}/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java[tags=example]
 ----
 
 
diff --git a/docs/components/modules/ROOT/pages/seda-component.adoc b/docs/components/modules/ROOT/pages/seda-component.adoc
index 0820a44..5f5b971 100644
--- a/docs/components/modules/ROOT/pages/seda-component.adoc
+++ b/docs/components/modules/ROOT/pages/seda-component.adoc
@@ -237,8 +237,19 @@ async queue to be able to send a fire-and-forget message for further
 processing in another thread, and return a constant reply in this thread
 to the original caller.
 
+[source,java]
+----
+include::{examplesdir}/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java[tags=example]
+----
+
 Here we send a Hello World message and expects the reply to be OK.
 
+[source,java]
+----
+include::{examplesdir}/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java[tags=example]
+----
+
+
 The "Hello World" message will be consumed from the SEDA queue from
 another thread for further processing. Since this is from a unit test,
 it will be sent to a `mock` endpoint where we can do assertions in the