summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/client_reader.cpp
diff options
context:
space:
mode:
authorhiddenpath <[email protected]>2025-03-01 17:24:09 +0300
committerhiddenpath <[email protected]>2025-03-01 17:42:01 +0300
commit513eec13663e999f0e8537c42e804e5e8684f19a (patch)
tree38a93cbb29a62558436ff498bcdfdee39b28afae /yt/cpp/mapreduce/client/client_reader.cpp
parent8b739d2ab4331d499f54de87def577f77db0680a (diff)
YT-24173: Fix error resolving path in remote clusters operations
commit_hash:9facb0640518c75b7a745dad2ddbd649cb91a83f
Diffstat (limited to 'yt/cpp/mapreduce/client/client_reader.cpp')
-rw-r--r--yt/cpp/mapreduce/client/client_reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/client/client_reader.cpp b/yt/cpp/mapreduce/client/client_reader.cpp
index 61369859bc9..37d39345f12 100644
--- a/yt/cpp/mapreduce/client/client_reader.cpp
+++ b/yt/cpp/mapreduce/client/client_reader.cpp
@@ -69,7 +69,7 @@ TClientReader::TClientReader(
if (useFormatFromTableAttributes) {
auto transactionId2 = ReadTransaction_ ? ReadTransaction_->GetId() : ParentTransactionId_;
- auto newFormat = GetTableFormat(ClientRetryPolicy_, RawClient_, transactionId2, Path_);
+ auto newFormat = GetTableFormat(ClientRetryPolicy_, RawClient_, Context_, transactionId2, Path_);
if (newFormat) {
Format_->Config = *newFormat;
}