You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by we...@apache.org on 2019/08/17 11:37:21 UTC

[hadoop] branch trunk updated: HDFS-12012. Fix spelling mistakes in BPServiceActor.java. Contributed by chencan.

This is an automated email from the ASF dual-hosted git repository.

weichiu pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 52837878 HDFS-12012. Fix spelling mistakes in BPServiceActor.java. Contributed by chencan.
52837878 is described below

commit 528378784fe14e7069dd0471f3c4c478544b57c8
Author: Wei-Chiu Chuang <we...@apache.org>
AuthorDate: Sat Aug 17 04:36:35 2019 -0700

    HDFS-12012. Fix spelling mistakes in BPServiceActor.java. Contributed by chencan.
---
 .../org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java
old mode 100644
new mode 100755
index 83b0460..1dafdd0
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java
@@ -436,7 +436,7 @@ class BPServiceActor implements Runnable {
           " The reports had " + totalBlockCount +
           " total blocks and used " + numRPCs +
           " RPC(s). This took " + brCreateCost +
-          " msec to generate and " + brSendCost +
+          " msecs to generate and " + brSendCost +
           " msecs for RPC and NN processing." +
           " Got back " +
           ((nCmds == 0) ? "no commands" :
@@ -486,7 +486,7 @@ class BPServiceActor implements Runnable {
       dn.getMetrics().addCacheReport(sendCost);
       if (LOG.isDebugEnabled()) {
         LOG.debug("CacheReport of " + blockIds.size()
-            + " block(s) took " + createCost + " msec to generate and "
+            + " block(s) took " + createCost + " msecs to generate and "
             + sendCost + " msecs for RPC and NN processing");
       }
     }
@@ -634,9 +634,9 @@ class BPServiceActor implements Runnable {
    */
   private void offerService() throws Exception {
     LOG.info("For namenode " + nnAddr + " using"
-        + " BLOCKREPORT_INTERVAL of " + dnConf.blockReportInterval + "msec"
-        + " CACHEREPORT_INTERVAL of " + dnConf.cacheReportInterval + "msec"
-        + " Initial delay: " + dnConf.initialBlockReportDelayMs + "msec"
+        + " BLOCKREPORT_INTERVAL of " + dnConf.blockReportInterval + "msecs"
+        + " CACHEREPORT_INTERVAL of " + dnConf.cacheReportInterval + "msecs"
+        + " Initial delay: " + dnConf.initialBlockReportDelayMs + "msecs"
         + "; heartBeatInterval=" + dnConf.heartBeatInterval
         + (lifelineSender != null ?
             "; lifelineIntervalMs=" + dnConf.getLifelineIntervalMs() : ""));


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org