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 ma...@apache.org on 2012/05/06 23:55:23 UTC

svn commit: r1334798 - in /hadoop/common/branches/branch-1.0: CHANGES.txt build.xml

Author: mattf
Date: Sun May  6 21:55:23 2012
New Revision: 1334798

URL: http://svn.apache.org/viewvc?rev=1334798&view=rev
Log:
HADOOP-7381. FindBugs OutOfMemoryError. Contributed by Joep Rottinghuis.

Modified:
    hadoop/common/branches/branch-1.0/CHANGES.txt
    hadoop/common/branches/branch-1.0/build.xml

Modified: hadoop/common/branches/branch-1.0/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1.0/CHANGES.txt?rev=1334798&r1=1334797&r2=1334798&view=diff
==============================================================================
--- hadoop/common/branches/branch-1.0/CHANGES.txt (original)
+++ hadoop/common/branches/branch-1.0/CHANGES.txt Sun May  6 21:55:23 2012
@@ -69,6 +69,8 @@ Release 1.0.3 - unreleased
     out of sync with computed size, causing quota issues; port of HDFS-1487.
     (Kihwal Lee via mattf)
 
+    HADOOP-7381. FindBugs OutOfMemoryError. (Joep Rottinghuis via mattf)
+
 Release 1.0.2 - 2012.03.24
 
   NEW FEATURES

Modified: hadoop/common/branches/branch-1.0/build.xml
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1.0/build.xml?rev=1334798&r1=1334797&r2=1334798&view=diff
==============================================================================
--- hadoop/common/branches/branch-1.0/build.xml (original)
+++ hadoop/common/branches/branch-1.0/build.xml Sun May  6 21:55:23 2012
@@ -204,6 +204,9 @@
   <property name="hadoop.conf.dir" value="/etc/hadoop"/>
 
   <!-- end of task-controller properties -->
+       
+  <!-- These args are passed along to FindBugs -->
+  <property name="findbugs.jvmargs" value="-Xmx512M" />
 
   <property name="package.buildroot" value="/tmp/hadoop_package_build_${user.name}"/>
   <property name="package.build.dir" value="/tmp/hadoop_package_build_${user.name}/BUILD"/>
@@ -1256,7 +1259,7 @@
 
     <findbugs home="${findbugs.home}" output="xml:withMessages"
         outputFile="${findbugs.report.xmlfile}" effort="max"
-        excludeFilter="${findbugs.exclude.file}" jvmargs="-Xmx512M">
+        excludeFilter="${findbugs.exclude.file}" jvmargs="${findbugs.jvmargs}">
       <auxClasspath>
         <fileset dir="${lib.dir}">
           <include name="**/*.jar"/>