diff options
author | artin-phares <artin-phares@yandex-team.com> | 2024-12-04 15:59:48 +0300 |
---|---|---|
committer | artin-phares <artin-phares@yandex-team.com> | 2024-12-04 16:30:02 +0300 |
commit | a00bee1b221bf8d6ac18bc85735777726ccb8afe (patch) | |
tree | 054f8ed641b8d9c754068e52782ebfd7a88d82d7 /yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp | |
parent | e1c0e000062c9a491febc86f8c715b9ef689f2f7 (diff) | |
download | ydb-a00bee1b221bf8d6ac18bc85735777726ccb8afe.tar.gz |
YT-23221: Pass custom pool to sky share operations
commit_hash:9c80e0f226bc350b5e89988c2f8cf92b65c7d50a
Diffstat (limited to 'yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp')
-rw-r--r-- | yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp b/yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp index cd36cea25a..8f9e79de77 100644 --- a/yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp +++ b/yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp @@ -833,6 +833,10 @@ TNode SerializeParamsForSkyShareTable( result["enable_fastbone"] = *options.EnableFastbone_; } + if (options.Pool_) { + result["pool"] = *options.Pool_; + } + return result; } |