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 cu...@apache.org on 2008/08/02 00:45:43 UTC

svn commit: r681886 - in /hadoop/core/branches/branch-0.18: CHANGES.txt src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/dfs/DFSFile.java src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/server/HadoopServer.java

Author: cutting
Date: Fri Aug  1 15:45:42 2008
New Revision: 681886

URL: http://svn.apache.org/viewvc?rev=681886&view=rev
Log:
Merge -r681879:681880 from trunk to 0.18 branch.  Fixes: HADOOP-3884.

Modified:
    hadoop/core/branches/branch-0.18/CHANGES.txt
    hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/dfs/DFSFile.java
    hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/server/HadoopServer.java

Modified: hadoop/core/branches/branch-0.18/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.18/CHANGES.txt?rev=681886&r1=681885&r2=681886&view=diff
==============================================================================
--- hadoop/core/branches/branch-0.18/CHANGES.txt (original)
+++ hadoop/core/branches/branch-0.18/CHANGES.txt Fri Aug  1 15:45:42 2008
@@ -1,7 +1,7 @@
 Hadoop Change Log
 
 
-Release 0.18.0 - Unreleased
+Release 0.18.0 - 2008-08-06
 
   INCOMPATIBLE CHANGES
 
@@ -779,6 +779,9 @@
     HADOOP-3865. Remove reference to FSNamesystem from metrics preventing
     garbage collection. (Lohit Vijayarenu via cdouglas)
 
+    HADOOP-3884.  Fix so that Eclipse plugin builds against recent
+    Eclipse releases.  (cutting)
+
 Release 0.17.2 - Unreleased
 
   BUG FIXES

Modified: hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/dfs/DFSFile.java
URL: http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/dfs/DFSFile.java?rev=681886&r1=681885&r2=681886&view=diff
==============================================================================
--- hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/dfs/DFSFile.java (original)
+++ hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/dfs/DFSFile.java Fri Aug  1 15:45:42 2008
@@ -311,7 +311,7 @@
 
       } catch (IOException ioe) {
         throw new CoreException(new Status(Status.ERROR,
-            Activator.PLUGIN_ID, "Unable to open file \""
+                Activator.PLUGIN_ID, 0, "Unable to open file \""
                 + DFSFile.this.path + "\"", ioe));
       }
     }

Modified: hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/server/HadoopServer.java
URL: http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/server/HadoopServer.java?rev=681886&r1=681885&r2=681886&view=diff
==============================================================================
--- hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/server/HadoopServer.java (original)
+++ hadoop/core/branches/branch-0.18/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/server/HadoopServer.java Fri Aug  1 15:45:42 2008
@@ -103,9 +103,10 @@
 
         } catch (IOException ioe) {
           client = null;
-          return new Status(Status.ERROR, Activator.PLUGIN_ID,
+          return new Status(Status.ERROR, Activator.PLUGIN_ID, 0,
               "Cannot connect to the Map/Reduce location: "
-                  + HadoopServer.this.getLocationName());
+                            + HadoopServer.this.getLocationName(),
+                            ioe);
         }
       }
 
@@ -145,9 +146,9 @@
 
       } catch (IOException ioe) {
         client = null;
-        return new Status(Status.ERROR, Activator.PLUGIN_ID,
+        return new Status(Status.ERROR, Activator.PLUGIN_ID, 0,
             "Cannot retrieve running Jobs on location: "
-                + HadoopServer.this.getLocationName());
+                          + HadoopServer.this.getLocationName(), ioe);
       }
 
       // Schedule the next observation