You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ha...@apache.org on 2012/03/19 21:23:08 UTC

svn commit: r1302640 - in /hadoop/common/branches/branch-1: CHANGES.txt src/webapps/job/jobtracker.jsp

Author: harsh
Date: Mon Mar 19 20:23:08 2012
New Revision: 1302640

URL: http://svn.apache.org/viewvc?rev=1302640&view=rev
Log:
MAPREDUCE-1109. ConcurrentModificationException in jobtracker.jsp (harsh)

Modified:
    hadoop/common/branches/branch-1/CHANGES.txt
    hadoop/common/branches/branch-1/src/webapps/job/jobtracker.jsp

Modified: hadoop/common/branches/branch-1/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1/CHANGES.txt?rev=1302640&r1=1302639&r2=1302640&view=diff
==============================================================================
--- hadoop/common/branches/branch-1/CHANGES.txt (original)
+++ hadoop/common/branches/branch-1/CHANGES.txt Mon Mar 19 20:23:08 2012
@@ -98,6 +98,8 @@ Release 1.1.0 - unreleased
     HADOOP-5836. Bug in S3N handling of directory markers using an object with
     a trailing "/" causes jobs to fail. (Jagane Sundar, Ian Nowland via suresh)
 
+    MAPREDUCE-1109. ConcurrentModificationException in jobtracker.jsp (harsh)
+
   IMPROVEMENTS
 
     MAPREDUCE-3597. [Rumen] Provide a way to access other info of history file

Modified: hadoop/common/branches/branch-1/src/webapps/job/jobtracker.jsp
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1/src/webapps/job/jobtracker.jsp?rev=1302640&r1=1302639&r2=1302640&view=diff
==============================================================================
--- hadoop/common/branches/branch-1/src/webapps/job/jobtracker.jsp (original)
+++ hadoop/common/branches/branch-1/src/webapps/job/jobtracker.jsp Mon Mar 19 20:23:08 2012
@@ -19,9 +19,9 @@
   String trackerName = 
            StringUtils.simpleHostname(tracker.getJobTrackerMachine());
   JobQueueInfo[] queues = tracker.getQueues();
-  Vector<JobInProgress> runningJobs = tracker.runningJobs();
-  Vector<JobInProgress> completedJobs = tracker.completedJobs();
-  Vector<JobInProgress> failedJobs = tracker.failedJobs();
+  Vector<JobInProgress> runningJobs = tracker.getRunningJobs();
+  Vector<JobInProgress> completedJobs = tracker.getCompletedJobs();
+  Vector<JobInProgress> failedJobs = tracker.getFailedJobs();
 %>
 <%!
   private static DecimalFormat percentFormat = new DecimalFormat("##0.00");