diff options
| author | ermolovd <[email protected]> | 2026-02-09 17:49:22 +0300 |
|---|---|---|
| committer | ermolovd <[email protected]> | 2026-02-09 18:22:27 +0300 |
| commit | 8cb74ec440f3e9fd5c26a45755b83ac3cac79c83 (patch) | |
| tree | 841c1efe0ab00e4dd01b777b01eaa7f4a0e83a5d /yt/cpp/mapreduce/interface/patchable_field.cpp | |
| parent | d86a86bd376e2e10da5a57f77cc413641195aa1e (diff) | |
YT-26760: operation_link_pattern is taken from dynamic configuration
* Changelog entry
Type: feature
Component: cpp-sdk
C++ SDK supports operation_link_pattern dynamic configuration
commit_hash:a937500f7ce866436ee8732c923fb4b362e199a1
Diffstat (limited to 'yt/cpp/mapreduce/interface/patchable_field.cpp')
| -rw-r--r-- | yt/cpp/mapreduce/interface/patchable_field.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/interface/patchable_field.cpp b/yt/cpp/mapreduce/interface/patchable_field.cpp new file mode 100644 index 00000000000..494b546eca2 --- /dev/null +++ b/yt/cpp/mapreduce/interface/patchable_field.cpp @@ -0,0 +1,16 @@ +#include "patchable_field.h" + +#include "client.h" + +namespace NYT::NDetail { + +//////////////////////////////////////////////////////////////////////////////// + +const TNode::TMapType& GetDynamicConfiguration(const IClientPtr& client, const TString& configProfile) +{ + return client->GetDynamicConfiguration(configProfile); +} + +//////////////////////////////////////////////////////////////////////////////// + +} // namespace NYT::NDetail |
