You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by ss...@apache.org on 2014/09/03 19:52:04 UTC

git commit: TEZ-1527. Fix indentation of Vertex status in DAGClient output. Contributed by Jeff Zhang.

Repository: tez
Updated Branches:
  refs/heads/master 8e9ee5653 -> 3f73945e7


TEZ-1527. Fix indentation of Vertex status in DAGClient output.
Contributed by Jeff Zhang.


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/3f73945e
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/3f73945e
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/3f73945e

Branch: refs/heads/master
Commit: 3f73945e7f87c69e12d2efe8198e3783d205f73a
Parents: 8e9ee56
Author: Siddharth Seth <ss...@apache.org>
Authored: Wed Sep 3 10:51:32 2014 -0700
Committer: Siddharth Seth <ss...@apache.org>
Committed: Wed Sep 3 10:51:32 2014 -0700

----------------------------------------------------------------------
 CHANGES.txt                                                    | 6 ++++++
 .../org/apache/tez/dag/api/client/rpc/DAGClientRPCImpl.java    | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/3f73945e/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 750ff8f..095700d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -6,6 +6,12 @@ Release 0.6.0: Unreleased
 INCOMPATIBLE CHANGES
   TEZ-1488. Rename HashComparator to ProxyComparator and implement in TezBytesComparator
 
+Release 0.5.1: Unreleased
+
+ALL CHANGES
+  TEZ-1515. Remove usage of ResourceBundles in Counters.
+  TEZ-1527. Fix indentation of Vertex status in DAGClient output.
+
 Release 0.5.0: Unreleased
 
 INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/tez/blob/3f73945e/tez-api/src/main/java/org/apache/tez/dag/api/client/rpc/DAGClientRPCImpl.java
----------------------------------------------------------------------
diff --git a/tez-api/src/main/java/org/apache/tez/dag/api/client/rpc/DAGClientRPCImpl.java b/tez-api/src/main/java/org/apache/tez/dag/api/client/rpc/DAGClientRPCImpl.java
index 9fb5642..51f7cfa 100644
--- a/tez-api/src/main/java/org/apache/tez/dag/api/client/rpc/DAGClientRPCImpl.java
+++ b/tez-api/src/main/java/org/apache/tez/dag/api/client/rpc/DAGClientRPCImpl.java
@@ -423,7 +423,7 @@ public class DAGClientRPCImpl extends DAGClient {
         } else if (vProgress.getTotalTaskCount() > 0) {
           vProgressFloat = getProgress(vProgress);
         }
-        log("VertexStatus:" + " VertexName: " + vertex + " Progress: "
+        log("\tVertexStatus:" + " VertexName: " + vertex + " Progress: "
             + formatter.format(vProgressFloat) + " " + vProgress);
       }
       if (displayCounter) {