Skip to content

Commit 3f7bb4c

Browse files
author
thenromanov
committed
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
1 parent b8ac60a commit 3f7bb4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yt/cpp/mapreduce/http_client/raw_batch_request.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ TFuture<TRichYPath> THttpRawBatchRequest::CanonizeYPath(const TRichYPath& path)
609609
result.Path_ = AddPathPrefix(result.Path_, Context_.Config->Prefix);
610610
}
611611

612-
if (result.Path_.find_first_of("<>{}[]") != TString::npos) {
612+
if (result.Path_.find_first_of("<>{}[]:") != TString::npos) {
613613
return AddRequest<TCanonizeYPathResponseParser>(
614614
"parse_ypath",
615615
SerializeParamsForParseYPath(result),

0 commit comments

Comments
 (0)