Skip to content

Commit

Permalink
Revert "Revert "Correcting display of the top 3 worst stages in a job…
Browse files Browse the repository at this point in the history
… execution (#370)""

This reverts commit 01b6497.
  • Loading branch information
varunsaxena committed Aug 31, 2018
1 parent 12d7bac commit 70d5bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ public static Result restJobGraphData(String jobDefId) {
int jobPerfScore = 0;
JsonArray stageScores = new JsonArray();
List<AppResult> mrJobsList = Lists.reverse(flowExecIdToJobsMap.get(flowExecPair));
for (AppResult appResult : flowExecIdToJobsMap.get(flowExecPair)) {
for (AppResult appResult : mrJobsList) {

// Each MR job triggered by jobDefId for flowExecId
int mrPerfScore = 0;
Expand Down

0 comments on commit 70d5bc4

Please sign in to comment.