You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-commits@hadoop.apache.org by sz...@apache.org on 2009/08/11 01:24:11 UTC

svn commit: r802954 - in /hadoop/mapreduce/trunk: CHANGES.txt build.xml

Author: szetszwo
Date: Mon Aug 10 23:24:11 2009
New Revision: 802954

URL: http://svn.apache.org/viewvc?rev=802954&view=rev
Log:
MAPREDUCE-845. Fix a findbugs heap size problem in build.xml and add a new property findbugs.heap.size.  Contributed by Lee Tucker

Modified:
    hadoop/mapreduce/trunk/CHANGES.txt
    hadoop/mapreduce/trunk/build.xml

Modified: hadoop/mapreduce/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/CHANGES.txt?rev=802954&r1=802953&r2=802954&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/CHANGES.txt (original)
+++ hadoop/mapreduce/trunk/CHANGES.txt Mon Aug 10 23:24:11 2009
@@ -334,3 +334,6 @@
 
     MAPREDUCE-808. Fixes a serialization problem in TypedBytes.
     (Klaas Bosteels via ddas)
+
+    MAPREDUCE-845. Fix a findbugs heap size problem in build.xml and add
+    a new property findbugs.heap.size.  (Lee Tucker via szetszwo)

Modified: hadoop/mapreduce/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/build.xml?rev=802954&r1=802953&r2=802954&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/build.xml (original)
+++ hadoop/mapreduce/trunk/build.xml Mon Aug 10 23:24:11 2009
@@ -154,6 +154,7 @@
   <property name="patch.cmd" value="patch"/>
   <property name="make.cmd" value="make"/>
 
+  <property name="findbugs.heap.size" value="512M"/>
   <!-- task-controller properties set here -->
   <!-- Source directory from where configure is run and files are copied
   -->
@@ -695,7 +696,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="-Xmx${findbugs.heap.size}">
       <auxClasspath>
         <fileset dir="${lib.dir}">
           <include name="**/*.jar"/>