Repository: tez
Updated Branches:
  refs/heads/master 0109af293 -> 3d3d04c6f


TEZ-3840 addendum. Tez should write TEZ_DAG_ID before TEZ_EXTRA_INFO (Jonathan 
Eagles via kshukla)


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

Branch: refs/heads/master
Commit: 3d3d04c6fa9d0d740cc00b1a0f526863e397c1ca
Parents: 0109af2
Author: Kuhu Shukla <[email protected]>
Authored: Wed Sep 20 10:40:05 2017 -0500
Committer: Kuhu Shukla <[email protected]>
Committed: Wed Sep 20 10:40:50 2017 -0500

----------------------------------------------------------------------
 .../dag/history/logging/ats/HistoryEventTimelineConversion.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/3d3d04c6/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java
----------------------------------------------------------------------
diff --git 
a/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java
 
b/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java
index 3b5dbfd..874be1d 100644
--- 
a/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java
+++ 
b/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java
@@ -96,8 +96,8 @@ public class HistoryEventTimelineConversion {
         return 
Collections.singletonList(convertDAGStartedEvent((DAGStartedEvent) 
historyEvent));
       case DAG_FINISHED:
         return Lists.newArrayList(
-            convertDAGFinishedToDAGExtraInfoEntity((DAGFinishedEvent) 
historyEvent),
-            convertDAGFinishedEvent((DAGFinishedEvent) historyEvent));
+            convertDAGFinishedEvent((DAGFinishedEvent) historyEvent),
+            convertDAGFinishedToDAGExtraInfoEntity((DAGFinishedEvent) 
historyEvent));
       case VERTEX_INITIALIZED:
         return Collections.singletonList(
             convertVertexInitializedEvent((VertexInitializedEvent) 
historyEvent));

Reply via email to