diff options
author | thenromanov <thenromanov@yandex-team.com> | 2025-02-18 13:23:40 +0300 |
---|---|---|
committer | thenromanov <thenromanov@yandex-team.com> | 2025-02-18 13:53:09 +0300 |
commit | 3f7bb4c26bcb890dc2217c24556422e39514f11f (patch) | |
tree | 95d75ba9052d4c3b885e3a55b04d3437130137d9 | |
parent | b8ac60a673bd416577ca37b911409acbd32c7be2 (diff) | |
download | ydb-3f7bb4c26bcb890dc2217c24556422e39514f11f.tar.gz |
Fix YPath canonization with cluster Attr in BatchRequest
* Changelog entry
Type: fix
Component: cpp-sdk
Fix YPath canonization with cluster Attr in BatchRequest
commit_hash:c69db8ca540727cea5954a571b01f9b764c84a1d
-rw-r--r-- | yt/cpp/mapreduce/http_client/raw_batch_request.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/http_client/raw_batch_request.cpp b/yt/cpp/mapreduce/http_client/raw_batch_request.cpp index 93a15f27e3..0029372d35 100644 --- a/yt/cpp/mapreduce/http_client/raw_batch_request.cpp +++ b/yt/cpp/mapreduce/http_client/raw_batch_request.cpp @@ -609,7 +609,7 @@ TFuture<TRichYPath> THttpRawBatchRequest::CanonizeYPath(const TRichYPath& path) result.Path_ = AddPathPrefix(result.Path_, Context_.Config->Prefix); } - if (result.Path_.find_first_of("<>{}[]") != TString::npos) { + if (result.Path_.find_first_of("<>{}[]:") != TString::npos) { return AddRequest<TCanonizeYPathResponseParser>( "parse_ypath", SerializeParamsForParseYPath(result), |