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/context.cpp | |
| parent | 8b739d2ab4331d499f54de87def577f77db0680a (diff) | |
YT-24173: Fix error resolving path in remote clusters operations
commit_hash:9facb0640518c75b7a745dad2ddbd649cb91a83f
Diffstat (limited to 'yt/cpp/mapreduce/http/context.cpp')
| -rw-r--r-- | yt/cpp/mapreduce/http/context.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/http/context.cpp b/yt/cpp/mapreduce/http/context.cpp index 18d564fe09c..531950c39e4 100644 --- a/yt/cpp/mapreduce/http/context.cpp +++ b/yt/cpp/mapreduce/http/context.cpp @@ -13,7 +13,8 @@ bool operator==(const TClientContext& lhs, const TClientContext& rhs) lhs.HttpClient == rhs.HttpClient && lhs.UseTLS == rhs.UseTLS && lhs.TvmOnly == rhs.TvmOnly && - lhs.ProxyAddress == rhs.ProxyAddress; + lhs.ProxyAddress == rhs.ProxyAddress && + lhs.ProxyRole == rhs.ProxyRole; } //////////////////////////////////////////////////////////////////////////////// |
