summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/client.cpp
diff options
context:
space:
mode:
authormaybenotilya <[email protected]>2026-03-30 11:59:09 +0300
committermaybenotilya <[email protected]>2026-03-30 12:25:02 +0300
commit8b3a0730d094da5f6307a5abe316d3ccf18df215 (patch)
tree95849b153a9243efea21b87d7dcc0e13f3ee6cfb /yt/cpp/mapreduce/client/client.cpp
parent74f5b52623adc37814be7fb7f92333c5f518626f (diff)
YT-27710: Add RPC to TransactionPinger
* Changelog entry Type: fix Component: cpp-sdk Allow TransactionPinger to ping via RPC if is being used in RPC Client. commit_hash:9b38ce40b5667f107d6f23e40bf07dcf80ac11c7
Diffstat (limited to 'yt/cpp/mapreduce/client/client.cpp')
-rw-r--r--yt/cpp/mapreduce/client/client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/client/client.cpp b/yt/cpp/mapreduce/client/client.cpp
index f5ae5506427..06e27671736 100644
--- a/yt/cpp/mapreduce/client/client.cpp
+++ b/yt/cpp/mapreduce/client/client.cpp
@@ -1694,7 +1694,7 @@ ITransactionPingerPtr TClient::GetTransactionPinger()
{
auto g = Guard(Lock_);
if (!TransactionPinger_) {
- TransactionPinger_ = CreateTransactionPinger(Context_.Config, Context_.UseTLS);
+ TransactionPinger_ = CreateTransactionPinger(Context_.Config);
}
return TransactionPinger_;
}