Return-Path: X-Original-To: apmail-helix-commits-archive@minotaur.apache.org Delivered-To: apmail-helix-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 972C510E7E for ; Mon, 28 Oct 2013 18:11:54 +0000 (UTC) Received: (qmail 46577 invoked by uid 500); 28 Oct 2013 18:11:36 -0000 Delivered-To: apmail-helix-commits-archive@helix.apache.org Received: (qmail 46298 invoked by uid 500); 28 Oct 2013 18:11:32 -0000 Mailing-List: contact commits-help@helix.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@helix.incubator.apache.org Delivered-To: mailing list commits@helix.incubator.apache.org Received: (qmail 46279 invoked by uid 99); 28 Oct 2013 18:11:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Oct 2013 18:11:30 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 28 Oct 2013 18:11:24 +0000 Received: (qmail 34682 invoked by uid 99); 28 Oct 2013 18:07:10 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Oct 2013 18:07:10 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6A3C88868B8; Mon, 28 Oct 2013 18:07:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: zzhang@apache.org To: commits@helix.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: fix typo Date: Mon, 28 Oct 2013 18:07:10 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Updated Branches: refs/heads/helix-0.6.2-release 5c7721970 -> ad9b6debc fix typo Project: http://git-wip-us.apache.org/repos/asf/incubator-helix/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-helix/commit/ad9b6deb Tree: http://git-wip-us.apache.org/repos/asf/incubator-helix/tree/ad9b6deb Diff: http://git-wip-us.apache.org/repos/asf/incubator-helix/diff/ad9b6deb Branch: refs/heads/helix-0.6.2-release Commit: ad9b6debc977b3f45d7c561ffd356e2a763e6018 Parents: 5c77219 Author: zzhang Authored: Mon Oct 28 11:07:00 2013 -0700 Committer: zzhang Committed: Mon Oct 28 11:07:00 2013 -0700 ---------------------------------------------------------------------- .../java/org/apache/helix/monitoring/ZKPathDataDumpTask.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/ad9b6deb/helix-core/src/main/java/org/apache/helix/monitoring/ZKPathDataDumpTask.java ---------------------------------------------------------------------- diff --git a/helix-core/src/main/java/org/apache/helix/monitoring/ZKPathDataDumpTask.java b/helix-core/src/main/java/org/apache/helix/monitoring/ZKPathDataDumpTask.java index 84d6c08..c62da62 100644 --- a/helix-core/src/main/java/org/apache/helix/monitoring/ZKPathDataDumpTask.java +++ b/helix-core/src/main/java/org/apache/helix/monitoring/ZKPathDataDumpTask.java @@ -47,7 +47,7 @@ public class ZKPathDataDumpTask extends TimerTask { public ZKPathDataDumpTask(HelixManager manager, ZkClient zkClient, int thresholdNoChangeInMs) { _manager = manager; _zkClient = zkClient; - logger.info("Scannning cluster statusUpdate " + manager.getClusterName() + logger.info("Scanning cluster statusUpdate " + manager.getClusterName() + " thresholdNoChangeInMs: " + thresholdNoChangeInMs); _thresholdNoChangeInMs = thresholdNoChangeInMs; } @@ -59,7 +59,7 @@ public class ZKPathDataDumpTask extends TimerTask { // We need to think if we should create per-instance log files that contains // per-instance statusUpdates // and errors - logger.info("Scannning status updates ..."); + logger.info("Scanning status updates ..."); try { HelixDataAccessor accessor = _manager.getHelixDataAccessor(); Builder keyBuilder = accessor.keyBuilder(); @@ -82,7 +82,7 @@ public class ZKPathDataDumpTask extends TimerTask { } void scanPath(String path, int thresholdNoChangeInMs) { - logger.info("Scannning path " + path); + logger.info("Scanning path " + path); List subPaths = _zkClient.getChildren(path); for (String subPath : subPaths) { try {