diff options
| author | hiddenpath <[email protected]> | 2025-03-01 17:24:09 +0300 |
|---|---|---|
| committer | hiddenpath <[email protected]> | 2025-03-01 17:42:01 +0300 |
| commit | 513eec13663e999f0e8537c42e804e5e8684f19a (patch) | |
| tree | 38a93cbb29a62558436ff498bcdfdee39b28afae /yt/cpp/mapreduce/http_client/raw_client.cpp | |
| parent | 8b739d2ab4331d499f54de87def577f77db0680a (diff) | |
YT-24173: Fix error resolving path in remote clusters operations
commit_hash:9facb0640518c75b7a745dad2ddbd649cb91a83f
Diffstat (limited to 'yt/cpp/mapreduce/http_client/raw_client.cpp')
| -rw-r--r-- | yt/cpp/mapreduce/http_client/raw_client.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/http_client/raw_client.cpp b/yt/cpp/mapreduce/http_client/raw_client.cpp index c86fd2494d2..734282c2cf5 100644 --- a/yt/cpp/mapreduce/http_client/raw_client.cpp +++ b/yt/cpp/mapreduce/http_client/raw_client.cpp @@ -903,6 +903,11 @@ IRawClientPtr THttpRawClient::Clone() return ::MakeIntrusive<THttpRawClient>(Context_); } +IRawClientPtr THttpRawClient::Clone(const TClientContext& context) +{ + return ::MakeIntrusive<THttpRawClient>(context); +} + //////////////////////////////////////////////////////////////////////////////// } // namespace NYT::NDetail |
