From f435c8b2b1cd55fcd478711b06415706e4aa2c87 Mon Sep 17 00:00:00 2001 From: maybenotilya Date: Wed, 20 May 2026 11:52:31 +0300 Subject: YT-27970: Multiplexing for RPC requests * Changelog entry Type: fix Component: cpp-sdk Mark light and heavy RPC requests with different multiplexing bands. Only for PingTransaction for now commit_hash:9177c1e3811a5108933a87dd3f241d235490ce2d --- yt/cpp/mapreduce/interface/config.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'yt/cpp/mapreduce/interface/config.cpp') diff --git a/yt/cpp/mapreduce/interface/config.cpp b/yt/cpp/mapreduce/interface/config.cpp index 8399ed042c1..e222e35c723 100644 --- a/yt/cpp/mapreduce/interface/config.cpp +++ b/yt/cpp/mapreduce/interface/config.cpp @@ -477,6 +477,7 @@ void Serialize(const TConfig& config, NYson::IYsonConsumer* consumer) .Item("enable_debug_command_line_arguments").Value(config.EnableDebugCommandLineArguments) .Item("config_remote_patch_path").Value(config.ConfigRemotePatchPath) .Item("enable_client_tracing").Value(config.EnableClientTracing) + .Item("enable_multiplexing_band").Value(config.EnableControlMultiplexingBand) .EndMap(); } @@ -549,6 +550,7 @@ void Deserialize(TConfig& config, const TNode& node) DESERIALIZE_ITEM("enable_debug_command_line_arguments", config.EnableDebugCommandLineArguments); DESERIALIZE_ITEM("config_remote_patch_path", config.ConfigRemotePatchPath); DESERIALIZE_ITEM("enable_client_tracing", config.EnableClientTracing); + DESERIALIZE_ITEM("enable_multiplexing_band", config.EnableControlMultiplexingBand); } #undef DESERIALIZE_ITEM -- cgit v1.3