diff options
| author | rp-1 <[email protected]> | 2025-10-11 14:59:44 +0300 |
|---|---|---|
| committer | rp-1 <[email protected]> | 2025-10-11 15:16:12 +0300 |
| commit | 384d7a82d5838408972b6df01c48dccdc25f08d5 (patch) | |
| tree | 30fcdc7831f4d5ecc20eb3c4e4bc75ff27ddd178 /yt/cpp/mapreduce/interface/config.cpp | |
| parent | 31c19b13025472f6ce0023b390930e292a670181 (diff) | |
YT-26065: Add TPatchableField to C++ config
Initial commit
commit_hash:d8d8a160ba64cc1e63e174430aec262d2359cf4e
Diffstat (limited to 'yt/cpp/mapreduce/interface/config.cpp')
| -rw-r--r-- | yt/cpp/mapreduce/interface/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/interface/config.cpp b/yt/cpp/mapreduce/interface/config.cpp index 9ae1ddefce0..4bdc180266b 100644 --- a/yt/cpp/mapreduce/interface/config.cpp +++ b/yt/cpp/mapreduce/interface/config.cpp @@ -475,6 +475,7 @@ void Serialize(const TConfig& config, NYson::IYsonConsumer* consumer) .Item("table_writer_version").Value(::ToString(config.TableWriterVersion)) .Item("redirect_stdout_to_stderr").Value(config.RedirectStdoutToStderr) .Item("enable_debug_command_line_arguments").Value(config.EnableDebugCommandLineArguments) + .Item("config_remote_patch_path").Value(config.ConfigRemotePatchPath) .EndMap(); } @@ -545,6 +546,7 @@ void Deserialize(TConfig& config, const TNode& node) DESERIALIZE_ITEM("table_writer_version", config.TableWriterVersion); DESERIALIZE_ITEM("redirect_stdout_to_stderr", config.RedirectStdoutToStderr); DESERIALIZE_ITEM("enable_debug_command_line_arguments", config.EnableDebugCommandLineArguments); + DESERIALIZE_ITEM("config_remote_patch_path", config.ConfigRemotePatchPath); } #undef DESERIALIZE_ITEM |
