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 2021/11/12 22:29:34 UTC

[camel] branch main updated: (chores) camel-zookeeper: fixed typo (#6435)

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 76b1a79  (chores) camel-zookeeper: fixed typo (#6435)
76b1a79 is described below

commit 76b1a79d282c1a41b6e18294c07d4cf36d147d34
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Fri Nov 12 23:28:54 2021 +0100

    (chores) camel-zookeeper: fixed typo (#6435)
---
 .../camel/component/zookeeper/cluster/ZooKeeperClusterService.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-zookeeper/src/main/java/org/apache/camel/component/zookeeper/cluster/ZooKeeperClusterService.java b/components/camel-zookeeper/src/main/java/org/apache/camel/component/zookeeper/cluster/ZooKeeperClusterService.java
index edc493c..5e47ffd 100644
--- a/components/camel-zookeeper/src/main/java/org/apache/camel/component/zookeeper/cluster/ZooKeeperClusterService.java
+++ b/components/camel-zookeeper/src/main/java/org/apache/camel/component/zookeeper/cluster/ZooKeeperClusterService.java
@@ -146,11 +146,11 @@ public class ZooKeeperClusterService extends AbstractCamelClusterService<ZooKeep
         configuration.setConnectionTimeout(connectionTimeout, connectionTimeotUnit);
     }
 
-    public TimeUnit getConnectionTimeotUnit() {
+    public TimeUnit getConnectionTimeoutUnit() {
         return configuration.getConnectionTimeoutUnit();
     }
 
-    public void setConnectionTimeotUnit(TimeUnit connectionTimeotUnit) {
+    public void setConnectionTimeoutUnit(TimeUnit connectionTimeotUnit) {
         configuration.setConnectionTimeoutUnit(connectionTimeotUnit);
     }