diff options
author | Dmitry Ermolov <ermolovd@ytsaurus.tech> | 2024-09-23 16:38:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-23 16:38:00 +0300 |
commit | a3bbcb929783d1eb27f8015aeb112e340e0315bf (patch) | |
tree | 57955920fc2a30eaefbd5dafa0e1c582cc73585b | |
parent | 875acb1b5ac2af65bbeb0802a879a8125ed0d4ff (diff) | |
download | ydb-a3bbcb929783d1eb27f8015aeb112e340e0315bf.tar.gz |
Don't set `UseAsyncTxPinger = true` explicitly (#9535)
-rw-r--r-- | ydb/library/yql/providers/yt/lib/init_yt_api/init.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ydb/library/yql/providers/yt/lib/init_yt_api/init.cpp b/ydb/library/yql/providers/yt/lib/init_yt_api/init.cpp index 6c413d2aaad..e7a1d11dd10 100644 --- a/ydb/library/yql/providers/yt/lib/init_yt_api/init.cpp +++ b/ydb/library/yql/providers/yt/lib/init_yt_api/init.cpp @@ -34,7 +34,6 @@ public: if (NYT::TConfig::Get()->Prefix.empty()) { NYT::TConfig::Get()->Prefix = "//"; } - NYT::TConfig::Get()->UseAsyncTxPinger = true; NYT::TConfig::Get()->AsyncHttpClientThreads = 2; NYT::TConfig::Get()->AsyncTxPingerPoolThreads = 2; YQL_CLOG(DEBUG, ProviderYt) << "Using YT global prefix: " << NYT::TConfig::Get()->Prefix; |