From 24a44df2ab01109cefd64d4bfad05c66e7ebd2af Mon Sep 17 00:00:00 2001 From: annashest18 Date: Sun, 22 Oct 2023 13:19:53 +0300 Subject: add using http-proxy for reading table from YT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add using http-proxy for reading table from YT Нам нужна возможность ходить в YT через HTTP proxy для чтения таблиц, используя С++ клиент не из контура Яндекса, к сожалению, сейчас такой возможности нет. В этом ПР черновик изменения, которого нам достаточно https://a.yandex-team.ru/review/4676436/details - тут это же изменение в YT + коммит с тем, как мы планируем использовать --- yt/cpp/mapreduce/http/context.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'yt/cpp/mapreduce/http/context.cpp') diff --git a/yt/cpp/mapreduce/http/context.cpp b/yt/cpp/mapreduce/http/context.cpp index 1c016263c51..d158a551957 100644 --- a/yt/cpp/mapreduce/http/context.cpp +++ b/yt/cpp/mapreduce/http/context.cpp @@ -12,7 +12,8 @@ bool operator==(const TClientContext& lhs, const TClientContext& rhs) lhs.ServiceTicketAuth == rhs.ServiceTicketAuth && lhs.HttpClient == rhs.HttpClient && lhs.UseTLS == rhs.UseTLS && - lhs.TvmOnly == rhs.TvmOnly; + lhs.TvmOnly == rhs.TvmOnly && + lhs.ProxyAddress == rhs.ProxyAddress; } bool operator!=(const TClientContext& lhs, const TClientContext& rhs) -- cgit v1.3