diff options
author | timestep <timestep@yandex-team.ru> | 2022-02-10 16:49:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:17 +0300 |
commit | 30f4921b0fa8722e5531e72cb40a93b526f6973a (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/monlib/encode/spack/compression.cpp | |
parent | 38b4bd28ca420294f532ac7ca6b2770d60e3dfd0 (diff) | |
download | ydb-30f4921b0fa8722e5531e72cb40a93b526f6973a.tar.gz |
Restoring authorship annotation for <timestep@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/monlib/encode/spack/compression.cpp')
-rw-r--r-- | library/cpp/monlib/encode/spack/compression.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/monlib/encode/spack/compression.cpp b/library/cpp/monlib/encode/spack/compression.cpp index 52ac65bc86..0d2152fc85 100644 --- a/library/cpp/monlib/encode/spack/compression.cpp +++ b/library/cpp/monlib/encode/spack/compression.cpp @@ -353,11 +353,11 @@ namespace NMonitoring { case ECompression::IDENTITY: return nullptr; case ECompression::ZLIB: - return MakeHolder<TFramedDecompressStream<TZlibCodec, TAdler32>>(in); + return MakeHolder<TFramedDecompressStream<TZlibCodec, TAdler32>>(in); case ECompression::ZSTD: - return MakeHolder<TFramedDecompressStream<TZstdCodec, TXxHash32>>(in); + return MakeHolder<TFramedDecompressStream<TZstdCodec, TXxHash32>>(in); case ECompression::LZ4: - return MakeHolder<TFramedDecompressStream<TLz4Codec, TXxHash32>>(in); + return MakeHolder<TFramedDecompressStream<TLz4Codec, TXxHash32>>(in); case ECompression::UNKNOWN: return nullptr; } @@ -369,11 +369,11 @@ namespace NMonitoring { case ECompression::IDENTITY: return nullptr; case ECompression::ZLIB: - return MakeHolder<TFramedCompressStream<TZlibCodec, TAdler32>>(out); + return MakeHolder<TFramedCompressStream<TZlibCodec, TAdler32>>(out); case ECompression::ZSTD: - return MakeHolder<TFramedCompressStream<TZstdCodec, TXxHash32>>(out); + return MakeHolder<TFramedCompressStream<TZstdCodec, TXxHash32>>(out); case ECompression::LZ4: - return MakeHolder<TFramedCompressStream<TLz4Codec, TXxHash32>>(out); + return MakeHolder<TFramedCompressStream<TLz4Codec, TXxHash32>>(out); case ECompression::UNKNOWN: return nullptr; } |