You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2011/12/29 19:54:24 UTC

svn commit: r1225617 - /hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/MapRedStats.java

Author: hashutosh
Date: Thu Dec 29 18:54:24 2011
New Revision: 1225617

URL: http://svn.apache.org/viewvc?rev=1225617&view=rev
Log:
HIVE-2681 : SUCESS is misspelled (jonchang via Ashutosh Chauhan)

Modified:
    hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/MapRedStats.java

Modified: hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/MapRedStats.java
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/MapRedStats.java?rev=1225617&r1=1225616&r2=1225617&view=diff
==============================================================================
--- hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/MapRedStats.java (original)
+++ hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/MapRedStats.java Thu Dec 29 18:54:24 2011
@@ -106,7 +106,7 @@ public class MapRedStats {
     }
 
     if (cpuMSec > 0) {
-      sb.append(" Accumulative CPU: " + (cpuMSec / 1000D) + " sec  ");
+      sb.append(" Cumulative CPU: " + (cpuMSec / 1000D) + " sec  ");
     }
 
     if (counters != null) {
@@ -125,7 +125,7 @@ public class MapRedStats {
       }
     }
 
-    sb.append(" " + (success ? "SUCESS" : "FAIL"));
+    sb.append(" " + (success ? "SUCCESS" : "FAIL"));
 
     return sb.toString();
   }