diff options
| author | maybenotilya <[email protected]> | 2026-04-28 14:32:57 +0300 |
|---|---|---|
| committer | maybenotilya <[email protected]> | 2026-04-28 15:06:33 +0300 |
| commit | 2353cef3307172edb200a4d35dfc3ac78d560673 (patch) | |
| tree | 26b79835fc57cc203fa971f1aa5ce8f55c1ff1b5 /yt/cpp/mapreduce/interface/config.cpp | |
| parent | 666b057d9fa32867424f2f5e3deed31669043235 (diff) | |
YT-27835: Add client tracing option serialization
commit_hash:a6b82620aa36e6007d645613916485de78eff6da
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 b4edcee4370..8399ed042c1 100644 --- a/yt/cpp/mapreduce/interface/config.cpp +++ b/yt/cpp/mapreduce/interface/config.cpp @@ -476,6 +476,7 @@ void Serialize(const TConfig& config, NYson::IYsonConsumer* consumer) .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) + .Item("enable_client_tracing").Value(config.EnableClientTracing) .EndMap(); } @@ -547,6 +548,7 @@ void Deserialize(TConfig& config, const TNode& node) 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); + DESERIALIZE_ITEM("enable_client_tracing", config.EnableClientTracing); } #undef DESERIALIZE_ITEM |
