diff options
author | arkady-e1ppa <arkady-e1ppa@yandex-team.com> | 2024-09-03 10:55:18 +0300 |
---|---|---|
committer | arkady-e1ppa <arkady-e1ppa@yandex-team.com> | 2024-09-03 11:29:27 +0300 |
commit | a8b88523909e5ff941fbccbc1fcaabc0d91fffdb (patch) | |
tree | 6aa5fb19fc2bf3253352c0216e200824693f0f4b | |
parent | 91c6afb6471856e836c31af870ba294f644ec55e (diff) | |
download | ydb-a8b88523909e5ff941fbccbc1fcaabc0d91fffdb.tar.gz |
babenko-issues of rXXXXXX
393e631681493083d286196f8c5425238dea2394
-rw-r--r-- | yt/yt/client/table_client/adapters.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/yt/client/table_client/adapters.cpp b/yt/yt/client/table_client/adapters.cpp index 0e78c2f861..0309bbbc48 100644 --- a/yt/yt/client/table_client/adapters.cpp +++ b/yt/yt/client/table_client/adapters.cpp @@ -21,7 +21,7 @@ using NProfiling::TWallTimer; //////////////////////////////////////////////////////////////////////////////// -const NLogging::TLogger Logger("TableClientAdapters"); +YT_DEFINE_GLOBAL(const NLogging::TLogger, Logger, "TableClientAdapters"); //////////////////////////////////////////////////////////////////////////////// @@ -237,7 +237,7 @@ void PipeReaderToWriterByBatches( } catch (const std::exception& ex) { YT_LOG_ERROR(ex, "Failed to transfer batches from reader to writer"); - THROW_ERROR_EXCEPTION(ex); + throw; } } |