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 <[email protected]> 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 "[email protected]" <[email protected]>.
