You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2021/01/11 23:03:41 UTC

[camel-kafka-connector] branch master updated: Use relative link

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


The following commit(s) were added to refs/heads/master by this push:
     new d5161c7  Use relative link
d5161c7 is described below

commit d5161c76a0a756c35fa9fff651b28463dd9d7ce7
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Tue Jan 12 00:03:27 2021 +0100

    Use relative link
---
 docs/modules/ROOT/pages/idempotency.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/idempotency.adoc b/docs/modules/ROOT/pages/idempotency.adoc
index bd9cb6b..15a0474 100644
--- a/docs/modules/ROOT/pages/idempotency.adoc
+++ b/docs/modules/ROOT/pages/idempotency.adoc
@@ -3,7 +3,7 @@
 
 == What is Idempotency?
 
-The Idempotent Consumer from the EIP patterns is used to filter out duplicate messages: it essentially acts like a Message Filter to filter out duplicates, as reported in the [Camel documentation](https://camel.apache.org/components/latest/eips/idempotentConsumer-eip.html)
+The Idempotent Consumer from the EIP patterns is used to filter out duplicate messages: it essentially acts like a Message Filter to filter out duplicates, as reported in the xref:components::eips/idempotentConsumer-eip.adoc[Camel documentation].
 
 From the [Enterprise Integration Patterns documentation](https://www.enterpriseintegrationpatterns.com/patterns/messaging/MessagingEndpointsIntro.html):
 _Sometimes the same message gets delivered more than once, either because the messaging system is not certain the message has been successfully delivered yet, or because the Message Channel’s quality-of-service has been lowered to improve performance. Message receivers, on the other hand, tend to assume that each message will be delivered exactly once, and tend to cause problems when they repeat processing because of repeat messages. A receiver designed as an Idempotent Receiver handles  [...]