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:53:12 UTC

git commit: TEZ-1527. Fix indentation of Vertex status in DAGClient output. Contributed by Jeff Zhang. (cherry picked from commit 3f73945e7f87c69e12d2efe8198e3783d205f73a)

Repository: tez
Updated Branches:
  refs/heads/branch-0.5 ff359ff35 -> 7f1977be0


TEZ-1527. Fix indentation of Vertex status in DAGClient output.
Contributed by Jeff Zhang.
(cherry picked from commit 3f73945e7f87c69e12d2efe8198e3783d205f73a)

Conflicts:
	CHANGES.txt


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

Branch: refs/heads/branch-0.5
Commit: 7f1977be0dd0e485aa9a4dd5910fd838ebe8adc6
Parents: ff359ff
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:52:58 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/7f1977be/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 63ff707..e4482ea 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,12 @@
 Apache Tez Change Log
 =====================
 
+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/7f1977be/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) {