diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-08-02 14:10:22 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-08-02 14:10:22 +0300 |
commit | c04889f9d34dcbe67042587547efe562a700af1c (patch) | |
tree | 6d73e5eb4a18f5d6f0804a3ac8883759574e4f77 | |
parent | e59e20ae2d1e498c1a2ee4c6f9036475b45b8329 (diff) | |
download | ydb-c04889f9d34dcbe67042587547efe562a700af1c.tar.gz |
Intermediate changes
-rw-r--r-- | yt/yt/core/logging/serializable_logger.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/yt/yt/core/logging/serializable_logger.cpp b/yt/yt/core/logging/serializable_logger.cpp index 229638be79..6ac2b1a902 100644 --- a/yt/yt/core/logging/serializable_logger.cpp +++ b/yt/yt/core/logging/serializable_logger.cpp @@ -46,15 +46,9 @@ void TSerializableLogger::Load(TStreamLoadContext& context) Load(context, Essential_); Load(context, MinLevel_); Load(context, Tag_); - - // COMPAT(max42); 300616 is a version for StructuredTagsInLogger in CA snapshot. - if (context.GetVersion() >= 300616) { - TVectorSerializer<TTupleSerializer<TStructuredTag, 2>>::Load(context, StructuredTags_); - } + TVectorSerializer<TTupleSerializer<TStructuredTag, 2>>::Load(context, StructuredTags_); } //////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////// - } // namespace NYT::NLogging |