Browse Source

HADOOP-2944. Fixes a "Run on Hadoop" wizard NPE when creating a Location from the wizard. (taton)


git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@639837 13f79535-47bb-0310-9956-ffa450edef68
Christophe Taton 17 years ago
parent
commit
8608e9362e

+ 3 - 0
CHANGES.txt

@@ -357,6 +357,9 @@ Release 0.16.2 - Unreleased
     HADOOP-3041. Deprecates getOutputPath and defines two new APIs
     getCurrentOutputPath and getFinalOutputPath.
     (Amareshwari Sriramadasu via ddas)
+    
+    HADOOP-2944. Fixes a "Run on Hadoop" wizard NPE when creating a
+    Location from the wizard. (taton)
 
 Release 0.16.1 - 2008-03-13
 

+ 1 - 1
src/contrib/eclipse-plugin/META-INF/MANIFEST.MF

@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: MapReduce Tools for Eclipse
 Bundle-SymbolicName: org.apache.hadoop.eclipse;singleton:=true
-Bundle-Version: 0.16
+Bundle-Version: 0.16.2
 Bundle-Activator: org.apache.hadoop.eclipse.Activator
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.ui,

+ 1 - 1
src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/servers/RunOnHadoopWizard.java

@@ -94,7 +94,7 @@ public class RunOnHadoopWizard extends Wizard {
   @Override
   public void addPages() {
     addPage(this.mainPage = new MainWizardPage());
-    addPage(new HadoopLocationWizard());
+    addPage(this.createNewPage = new HadoopLocationWizard());
   }
 
   /**