Skip to content

Commit

Permalink
Correcting display of the top 3 worst stages in a job execution (link…
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamjainflipkart authored and akshayrai committed May 11, 2018
1 parent 79f5442 commit 861c333
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 861c333

Please sign in to comment.