You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2017/12/05 12:37:27 UTC

[camel] branch master updated: fixed typo

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 895a043  fixed typo
895a043 is described below

commit 895a04388b5362e33246df48eb665733ebfff9bd
Author: eric-lee-ltk <da...@huawei.com>
AuthorDate: Tue Dec 5 20:32:15 2017 +0800

    fixed typo
    
    Signed-off-by: eric-lee-ltk <da...@huawei.com>
---
 .../camel/component/ribbon/cloud/RibbonServiceDefinition.java     | 8 ++++----
 examples/camel-example-cassandra-kubernetes/ReadMe.md             | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/components/camel-ribbon/src/main/java/org/apache/camel/component/ribbon/cloud/RibbonServiceDefinition.java b/components/camel-ribbon/src/main/java/org/apache/camel/component/ribbon/cloud/RibbonServiceDefinition.java
index 37098af..8ad82ae 100644
--- a/components/camel-ribbon/src/main/java/org/apache/camel/component/ribbon/cloud/RibbonServiceDefinition.java
+++ b/components/camel-ribbon/src/main/java/org/apache/camel/component/ribbon/cloud/RibbonServiceDefinition.java
@@ -38,19 +38,19 @@ public class RibbonServiceDefinition extends Server implements ServiceDefinition
         this(name, host, port, null, DEFAULT_SERVICE_HEALTH);
     }
 
-    public RibbonServiceDefinition(String name, String host, int port, ServiceHealth healt) {
-        this(name, host, port, null, healt);
+    public RibbonServiceDefinition(String name, String host, int port, ServiceHealth health) {
+        this(name, host, port, null, health);
     }
 
     public RibbonServiceDefinition(String name, String host, int port,  Map<String, String> meta) {
         this(name, host, port, meta, DEFAULT_SERVICE_HEALTH);
     }
 
-    public RibbonServiceDefinition(String name, String host, int port, Map<String, String> meta, ServiceHealth healt) {
+    public RibbonServiceDefinition(String name, String host, int port, Map<String, String> meta, ServiceHealth health) {
         super(host, port);
         this.name = name;
         this.metaData = meta;
-        this.health = healt;
+        this.health = health;
     }
 
     public RibbonServiceDefinition(ServiceDefinition definition) {
diff --git a/examples/camel-example-cassandra-kubernetes/ReadMe.md b/examples/camel-example-cassandra-kubernetes/ReadMe.md
index a142acf..d5002bc 100644
--- a/examples/camel-example-cassandra-kubernetes/ReadMe.md
+++ b/examples/camel-example-cassandra-kubernetes/ReadMe.md
@@ -40,7 +40,7 @@ cassandra-0                                1/1       Running   0          2h
 cassandra-1                                1/1       Running   0          2h
 ```
 
-You can also verify the healt of your cluster by running
+You can also verify the health of your cluster by running
 
 ```
 $ kubectl exec <pod_name> -it nodetool status

-- 
To stop receiving notification emails like this one, please contact
['"commits@camel.apache.org" <co...@camel.apache.org>'].