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 2024/03/22 09:15:34 UTC

(camel) branch main updated: Update random-eip.adoc (#13589)

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 437adee7581 Update random-eip.adoc (#13589)
437adee7581 is described below

commit 437adee758103b0d0a32e6458cfc1e8506a31cfb
Author: Marco Carletti <mc...@redhat.com>
AuthorDate: Fri Mar 22 10:15:28 2024 +0100

    Update random-eip.adoc (#13589)
---
 .../src/main/docs/modules/eips/pages/random-eip.adoc                  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/random-eip.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/random-eip.adoc
index cad9987cfc6..7958a92e20e 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/random-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/random-eip.adoc
@@ -34,7 +34,7 @@ Java::
 [source,java]
 ----
 from("direct:start")
-    .loadBalance().ramdom()
+    .loadBalance().random()
         .to("seda:x")
         .to("seda:y")
         .to("seda:z")
@@ -48,7 +48,7 @@ XML::
 <route>
     <from uri="direct:start"/>
     <loadBalance>
-       <ramdom/>
+       <random/>
        <to uri="seda:x"/>
        <to uri="seda:y"/>
        <to uri="seda:z"/>