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/11/13 22:38:37 UTC

git commit: fix typo

Updated Branches:
  refs/heads/master f3dd63312 -> 7adbd7429


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/7adbd742
Tree: http://git-wip-us.apache.org/repos/asf/incubator-helix/tree/7adbd742
Diff: http://git-wip-us.apache.org/repos/asf/incubator-helix/diff/7adbd742

Branch: refs/heads/master
Commit: 7adbd7429047956e588ffb1a4bf2bce9bd5da038
Parents: f3dd633
Author: zzhang <zz...@apache.org>
Authored: Wed Nov 13 13:14:48 2013 -0800
Committer: zzhang <zz...@apache.org>
Committed: Wed Nov 13 13:14:48 2013 -0800

----------------------------------------------------------------------
 .../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/7adbd742/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 54778fc..226b250 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 {