File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
topic/src/main/java/tech/ydb/topic/utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1313import org .anarres .lzo .LzoAlgorithm ;
1414import org .anarres .lzo .LzoCompressor ;
1515import org .anarres .lzo .LzoLibrary ;
16- import org .anarres .lzo .LzoOutputStream ;
1716import org .anarres .lzo .LzopInputStream ;
17+ import org .anarres .lzo .LzopOutputStream ;
1818
1919import tech .ydb .topic .description .Codec ;
2020
@@ -64,7 +64,7 @@ private static OutputStream makeOutputStream(Codec codec,
6464 return new ZstdOutputStreamNoFinalizer (byteArrayOutputStream );
6565 case LZOP :
6666 LzoCompressor lzoCompressor = LzoLibrary .getInstance ().newCompressor (LzoAlgorithm .LZO1X , null );
67- return new LzoOutputStream (byteArrayOutputStream , lzoCompressor );
67+ return new LzopOutputStream (byteArrayOutputStream , lzoCompressor );
6868 case CUSTOM :
6969 default :
7070 throw new RuntimeException ("Unsupported codec: " + codec );
You can’t perform that action at this time.
0 commit comments