divijvaidya commented on code in PR #13135: URL: https://github.com/apache/kafka/pull/13135#discussion_r1083847838
########## clients/src/main/java/org/apache/kafka/common/compress/ZstdFactory.java: ########## @@ -26,21 +26,25 @@ import org.apache.kafka.common.utils.ByteBufferInputStream; import org.apache.kafka.common.utils.ByteBufferOutputStream; -import java.io.BufferedInputStream; import java.io.BufferedOutputStream; +import java.io.DataInputStream; import java.io.InputStream; import java.io.OutputStream; import java.nio.ByteBuffer; public class ZstdFactory { + /** + * Default compression level + */ + private static final int DEFAULT_COMPRESSION_LEVEL = 3; Review Comment: Removed this change from this PR. -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org