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 2020/10/09 10:30:30 UTC

[camel] branch master updated: Update health-check.adoc

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 1f0a466  Update health-check.adoc
1f0a466 is described below

commit 1f0a4660e897a839c1565ce73bcaa94244a217ac
Author: Bruno Delgado <br...@gmail.com>
AuthorDate: Fri Oct 9 11:14:18 2020 +0100

    Update health-check.adoc
    
    Corrected a mistake in the documentation. The sample was overriding the method isLiveness instead of isReadiness.
---
 docs/user-manual/modules/ROOT/pages/health-check.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/user-manual/modules/ROOT/pages/health-check.adoc b/docs/user-manual/modules/ROOT/pages/health-check.adoc
index 6482c30..16b1967 100644
--- a/docs/user-manual/modules/ROOT/pages/health-check.adoc
+++ b/docs/user-manual/modules/ROOT/pages/health-check.adoc
@@ -37,7 +37,7 @@ you would need to turn off readiness, by overriding the `isReadiness` method and
 [source,java]
 ----
     @Override
-    public boolean isLiveness() {
+    public boolean isReadiness() {
         return false;
     }
 ----