You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by zz...@apache.org on 2013/10/28 19:07:10 UTC

git commit: fix typo

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 <zz...@uci.edu>
Authored: Mon Oct 28 11:07:00 2013 -0700
Committer: zzhang <zz...@uci.edu>
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<String> subPaths = _zkClient.getChildren(path);
     for (String subPath : subPaths) {
       try {