diff options
| author | hiddenpath <[email protected]> | 2025-04-02 02:02:00 +0300 |
|---|---|---|
| committer | hiddenpath <[email protected]> | 2025-04-02 02:16:52 +0300 |
| commit | 71dbc38bded6bb95ef3da39caaeb56d8f61fa008 (patch) | |
| tree | 4f6b4f7c68acdd83b0f024067829c0a0f564640d /yt/cpp/mapreduce/interface/client_method_options.h | |
| parent | 4157756a3454887710fee0613e550ea1d3051f2c (diff) | |
Change UnixDomainSocket option into boolean
commit_hash:b2716bf7efedb55f6a99c800356dfaaeab6abaff
Diffstat (limited to 'yt/cpp/mapreduce/interface/client_method_options.h')
| -rw-r--r-- | yt/cpp/mapreduce/interface/client_method_options.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt/cpp/mapreduce/interface/client_method_options.h b/yt/cpp/mapreduce/interface/client_method_options.h index 866f900571d..d8024a7e735 100644 --- a/yt/cpp/mapreduce/interface/client_method_options.h +++ b/yt/cpp/mapreduce/interface/client_method_options.h @@ -1119,9 +1119,9 @@ struct TCreateClientOptions /// @brief Proxy Address to be used for connection FLUENT_FIELD_OPTION(TString, ProxyAddress); - /// @brief Specifies the Unix socket used for connection, - /// typically when the RPC proxy is enabled within the job proxy. - FLUENT_FIELD_OPTION(TString, ProxyUnixDomainSocket); + /// @brief Use unix domain socket for connection. + /// Typically you will need this option when the RPC proxy is enabled within the job proxy. + FLUENT_FIELD_DEFAULT(bool, UseProxyUnixDomainSocket, false); }; /// |
