Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 68451 invoked from network); 1 Aug 2008 22:46:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Aug 2008 22:46:34 -0000 Received: (qmail 89826 invoked by uid 500); 1 Aug 2008 22:46:33 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 89799 invoked by uid 500); 1 Aug 2008 22:46:33 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 89790 invoked by uid 99); 1 Aug 2008 22:46:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Aug 2008 15:46:33 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Aug 2008 22:45:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 67FFB2388878; Fri, 1 Aug 2008 15:45:43 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 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 Date: Fri, 01 Aug 2008 22:45:43 -0000 To: core-commits@hadoop.apache.org From: cutting@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080801224543.67FFB2388878@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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