Browse Source

MAPREDUCE-6186. Redundant call to requireJob() while displaying the conf page. Contributed by Rohit Agarwal

Jason Lowe 10 years ago
parent
commit
e1990ab427

+ 3 - 0
hadoop-mapreduce-project/CHANGES.txt

@@ -338,6 +338,9 @@ Release 2.7.0 - UNRELEASED
     MAPREDUCE-5988. Fix dead links to the javadocs in mapreduce project.
     (aajisaka)
 
+    MAPREDUCE-6186. Redundant call to requireJob() while displaying the conf
+    page (Rohit Agarwal via jlowe)
+
 Release 2.6.0 - 2014-11-18
 
   INCOMPATIBLE CHANGES

+ 0 - 1
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/webapp/AppController.java

@@ -313,7 +313,6 @@ public class AppController extends Controller implements AMParams {
    * Render the /conf page
    */
   public void conf() {
-    requireJob();
     try {
       requireJob();
     }