You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2018/06/06 20:54:22 UTC

[camel] branch master updated: Fixed dead-letter-channel.adoc

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

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


The following commit(s) were added to refs/heads/master by this push:
     new df6c1cc  Fixed dead-letter-channel.adoc
df6c1cc is described below

commit df6c1cc08be2e6a6a97cabe0346f9d14e8353924
Author: aldettinger <al...@gmail.com>
AuthorDate: Wed Jun 6 21:09:28 2018 +0200

    Fixed dead-letter-channel.adoc
---
 camel-core/src/main/docs/eips/dead-letter-channel.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/camel-core/src/main/docs/eips/dead-letter-channel.adoc b/camel-core/src/main/docs/eips/dead-letter-channel.adoc
index f8b96c5..5137011 100644
--- a/camel-core/src/main/docs/eips/dead-letter-channel.adoc
+++ b/camel-core/src/main/docs/eips/dead-letter-channel.adoc
@@ -143,7 +143,7 @@ this by enabling the *useOriginalMessage* option as shown below:
 ----
 // will use original body
 errorHandler(deadLetterChannel("jms:queue:dead")
-   .useOriginalMessage().maximumRedeliveries(5).redeliverDelay(5000);
+   .useOriginalMessage().maximumRedeliveries(5).redeliveryDelay(5000);
 ----
 
 Then the messages routed to the `jms:queue:dead` is the original input.
@@ -176,7 +176,7 @@ Redelivery is disabled by default.
 The default redeliver policy will use the following values:
 
 * maximumRedeliveries=0
-* redeliverDelay=1000L (1 second)
+* redeliveryDelay=1000L (1 second)
 * maximumRedeliveryDelay = 60 * 1000L (60 seconds)
 * And the exponential backoff and collision avoidance is turned off.
 * The retriesExhaustedLogLevel are set to LoggingLevel.ERROR
@@ -416,7 +416,7 @@ redelivery is allowed or not; notice that any in progress redelivery
 will still be executed. This option can only disallow any redelivery to
 be executed *after* the stopping of a route/shutdown of Camel has been
 triggered. If a redelivery is dissallowed then a
-`RejectedExcutionException` is set on the link:exchange.html[Exchange]
+`RejectedExecutionException` is set on the link:exchange.html[Exchange]
 and the processing of the link:exchange.html[Exchange] stops. This means
 any consumer will see the link:exchange.html[Exchange] as failed due the
 `RejectedExecutionException`.

-- 
To stop receiving notification emails like this one, please contact
aldettinger@apache.org.