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 to...@apache.org on 2012/03/20 03:37:16 UTC

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

Author: todd
Date: Tue Mar 20 02:37:16 2012
New Revision: 1302760

URL: http://svn.apache.org/viewvc?rev=1302760&view=rev
Log:
Revert MAPREDUCE-1109 from r1302640. It broke compilation.

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=1302760&r1=1302759&r2=1302760&view=diff
==============================================================================
--- hadoop/common/branches/branch-1/CHANGES.txt (original)
+++ hadoop/common/branches/branch-1/CHANGES.txt Tue Mar 20 02:37:16 2012
@@ -98,8 +98,6 @@ 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=1302760&r1=1302759&r2=1302760&view=diff
==============================================================================
--- hadoop/common/branches/branch-1/src/webapps/job/jobtracker.jsp (original)
+++ hadoop/common/branches/branch-1/src/webapps/job/jobtracker.jsp Tue Mar 20 02:37:16 2012
@@ -19,9 +19,9 @@
   String trackerName = 
            StringUtils.simpleHostname(tracker.getJobTrackerMachine());
   JobQueueInfo[] queues = tracker.getQueues();
-  Vector<JobInProgress> runningJobs = tracker.getRunningJobs();
-  Vector<JobInProgress> completedJobs = tracker.getCompletedJobs();
-  Vector<JobInProgress> failedJobs = tracker.getFailedJobs();
+  Vector<JobInProgress> runningJobs = tracker.runningJobs();
+  Vector<JobInProgress> completedJobs = tracker.completedJobs();
+  Vector<JobInProgress> failedJobs = tracker.failedJobs();
 %>
 <%!
   private static DecimalFormat percentFormat = new DecimalFormat("##0.00");