Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0F9C1200D41 for ; Tue, 7 Nov 2017 10:39:57 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0E206160C18; Tue, 7 Nov 2017 09:39:57 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id AE6A8160C0A for ; Tue, 7 Nov 2017 10:39:55 +0100 (CET) Received: (qmail 27164 invoked by uid 500); 7 Nov 2017 09:39:54 -0000 Mailing-List: contact commits-help@sling.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@sling.apache.org Delivered-To: mailing list commits@sling.apache.org Received: (qmail 26670 invoked by uid 99); 7 Nov 2017 09:39:54 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2017 09:39:54 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B2669879EA; Tue, 7 Nov 2017 09:39:53 +0000 (UTC) Date: Tue, 07 Nov 2017 09:40:20 +0000 To: "commits@sling.apache.org" Subject: [sling-org-apache-sling-hc-webconsole] 06/13: SLING-3278 : Provide a HealthCheckExecutor service. Separate health check meta data into separate class. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: rombert@apache.org In-Reply-To: <151004759246.5226.7577415786072958582@gitbox.apache.org> References: <151004759246.5226.7577415786072958582@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: sling-org-apache-sling-hc-webconsole X-Git-Refname: refs/tags/org.apache.sling.hc.webconsole-1.1.0 X-Git-Reftype: annotated tag X-Git-Rev: 32f64fe4ac2d2d63d1c0b41e599accdec30d53e7 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20171107093953.B2669879EA@gitbox.apache.org> archived-at: Tue, 07 Nov 2017 09:39:57 -0000 This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.hc.webconsole-1.1.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-webconsole.git commit 32f64fe4ac2d2d63d1c0b41e599accdec30d53e7 Author: Carsten Ziegeler AuthorDate: Fri Jan 3 06:06:26 2014 +0000 SLING-3278 : Provide a HealthCheckExecutor service. Separate health check meta data into separate class. git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/webconsole@1555015 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/sling/hc/webconsole/impl/HealthCheckWebconsolePlugin.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/sling/hc/webconsole/impl/HealthCheckWebconsolePlugin.java b/src/main/java/org/apache/sling/hc/webconsole/impl/HealthCheckWebconsolePlugin.java index c5f83bb..19513ae 100644 --- a/src/main/java/org/apache/sling/hc/webconsole/impl/HealthCheckWebconsolePlugin.java +++ b/src/main/java/org/apache/sling/hc/webconsole/impl/HealthCheckWebconsolePlugin.java @@ -149,8 +149,8 @@ public class HealthCheckWebconsolePlugin extends HttpServlet { final StringBuilder status = new StringBuilder(); - status.append("Tags: ").append(exResult.getHealthCheckTags()); - c.titleHtml(exResult.getHealthCheckName(), null); + status.append("Tags: ").append(exResult.getHealthCheckMetaData().getTags()); + c.titleHtml(exResult.getHealthCheckMetaData().getTitle(), null); c.tr(); c.tdContent(); -- To stop receiving notification emails like this one, please contact "commits@sling.apache.org" .