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:40:22 UTC

[camel-kafka-connector] branch master updated: Fix xref 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 c0b01cc  Fix xref link
c0b01cc is described below

commit c0b01cc963b52cafd49058bcea808c000ebf10c8
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Tue Jan 12 00:40:09 2021 +0100

    Fix xref 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 15a0474..24cbc1e 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 xref:components::eips/idempotentConsumer-eip.adoc[Camel documentation].
+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  [...]