opwvhk commented on code in PR #3405:
URL: https://github.com/apache/avro/pull/3405#discussion_r2139883398


##########
lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestNettyServerWithCompression.java:
##########
@@ -31,7 +31,7 @@ public class TestNettyServerWithCompression extends 
TestNettyServer {
   public static void initializeConnections() throws Exception {
     initializeConnections(ch -> {
       ch.pipeline().addFirst("deflater", new JdkZlibEncoder(6));
-      ch.pipeline().addFirst("inflater", new JdkZlibDecoder());
+      ch.pipeline().addFirst("inflater", new JdkZlibDecoder(0));

Review Comment:
   The 0-argument constructor has been deprecated in favour of this one.
   
   The parameter value is the same as with the deprecated constructor.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to