Updated Branches: refs/heads/master 330ca5ecf -> b431ec18b
adding a fix related to STRATOS-205 Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/b431ec18 Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/b431ec18 Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/b431ec18 Branch: refs/heads/master Commit: b431ec18bacd7a6b5775cfe5297cd06defc80fe6 Parents: 330ca5e Author: Lahiru Sandaruwan <[email protected]> Authored: Tue Nov 26 11:22:04 2013 +0530 Committer: Lahiru Sandaruwan <[email protected]> Committed: Tue Nov 26 11:22:04 2013 +0530 ---------------------------------------------------------------------- .../stratos/messaging/broker/heartbeat/TopicHealthChecker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/b431ec18/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/broker/heartbeat/TopicHealthChecker.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/broker/heartbeat/TopicHealthChecker.java b/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/broker/heartbeat/TopicHealthChecker.java index d2b6e4d..bb8bc3c 100644 --- a/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/broker/heartbeat/TopicHealthChecker.java +++ b/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/broker/heartbeat/TopicHealthChecker.java @@ -56,7 +56,7 @@ public class TopicHealthChecker implements Runnable { // implies connection is not established // sleep for 5s and retry try { - log.info("Health checker failed and will retry to establish a connection after a 5s."); + log.info(topicName + " topic Health Checker is failed and will retry to establish a connection after a 5s."); Thread.sleep(5000); break; } catch (InterruptedException ignore) {
