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-examples.git
The following commit(s) were added to refs/heads/main by this push:
new 866ce6af CAMEL-20743: Load Balancer EIPs to be named with LoadBalancer
to be consistent in naming style
866ce6af is described below
commit 866ce6af0c63fc1615a29ff22c08d696bcbceb9c
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu May 9 13:31:25 2024 +0200
CAMEL-20743: Load Balancer EIPs to be named with LoadBalancer to be
consistent in naming style
---
.../main/resources/META-INF/spring/camel-route-context-loadbalancer.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/loadbalancing/src/main/resources/META-INF/spring/camel-route-context-loadbalancer.xml
b/loadbalancing/src/main/resources/META-INF/spring/camel-route-context-loadbalancer.xml
index 0f70ba9b..373bf167 100644
---
a/loadbalancing/src/main/resources/META-INF/spring/camel-route-context-loadbalancer.xml
+++
b/loadbalancing/src/main/resources/META-INF/spring/camel-route-context-loadbalancer.xml
@@ -17,7 +17,7 @@
<route id="loadbalancer">
<from uri="direct:loadbalance"/>
<loadBalance inheritErrorHandler="false">
- <failover roundRobin="true"/>
+ <failoverLoadBalancer roundRobin="true"/>
<to uri="mina:tcp://localhost:9991?sync=true"/>
<to uri="mina:tcp://localhost:9992?sync=true"/>
</loadBalance>