You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2011/08/02 08:29:13 UTC

svn commit: r1153042 - in /pig/trunk: CHANGES.txt contrib/penny/java/build.xml

Author: daijy
Date: Tue Aug  2 06:29:12 2011
New Revision: 1153042

URL: http://svn.apache.org/viewvc?rev=1153042&view=rev
Log:
PIG-2199: Penny throws Exception when netty classes are missing

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/contrib/penny/java/build.xml

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1153042&r1=1153041&r2=1153042&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Tue Aug  2 06:29:12 2011
@@ -97,8 +97,6 @@ PIG-2011: Speed up TestTypedMap.java (dv
 
 BUG FIXES
 
-PIG-2013: Penny gets a null pointer when no properties are set (breed via daijy)
-
 PIG-2186: PigStorage new warnings about missing schema file 
  can be confusing (thejas)
 
@@ -338,6 +336,10 @@ PIG-1696: Performance: Use System.arrayc
 
 BUG FIXES
 
+PIG-2013: Penny gets a null pointer when no properties are set (breed via daijy)
+
+PIG-2199: Penny throws Exception when netty classes are missing (ddaniels888 via daijy)
+
 PIG-2159: New logical plan uses incorrect class for SUM causing for ClassCastException (daijy)
 
 PIG-2106: Fix Zebra unit test TestBasicUnion.testNeg3, TestBasicUnion.testNeg4 (daijy)

Modified: pig/trunk/contrib/penny/java/build.xml
URL: http://svn.apache.org/viewvc/pig/trunk/contrib/penny/java/build.xml?rev=1153042&r1=1153041&r2=1153042&view=diff
==============================================================================
--- pig/trunk/contrib/penny/java/build.xml (original)
+++ pig/trunk/contrib/penny/java/build.xml Tue Aug  2 06:29:12 2011
@@ -95,6 +95,7 @@
         <echo> *** Creating penny.jar ***</echo>
       <jar destfile="${pennyjar}">
         <fileset dir="build/classes"/>
+        <zipfileset src="${netty.jar}" />
       </jar>
     </target>
     <target depends="compile" name="compile-test">