aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorignat <ignat@yandex-team.com>2025-02-27 18:29:49 +0300
committerignat <ignat@yandex-team.com>2025-02-27 18:46:17 +0300
commit940b52dd26fb783e71cf0fb395151405b7c7213b (patch)
treed393df57b6d444cd66934de54d10a1e430de741c
parente8602faf9a45d8b8e46d1dc283c0f6d89bbe7b1f (diff)
downloadydb-940b52dd26fb783e71cf0fb395151405b7c7213b.tar.gz
YT-24340: Use 'type' instead of 'operation_type' in Python API
commit_hash:6a13727ca3768dc1f888871075884ab50ba0c3a4
-rw-r--r--yt/cpp/mapreduce/http_client/raw_requests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/http_client/raw_requests.cpp b/yt/cpp/mapreduce/http_client/raw_requests.cpp
index 130bea7eb8..75514b8682 100644
--- a/yt/cpp/mapreduce/http_client/raw_requests.cpp
+++ b/yt/cpp/mapreduce/http_client/raw_requests.cpp
@@ -43,7 +43,7 @@ TOperationAttributes ParseOperationAttributes(const TNode& node)
if (auto typeNode = mapNode.FindPtr("type")) {
result.Type = FromString<EOperationType>(typeNode->AsString());
} else if (auto operationTypeNode = mapNode.FindPtr("operation_type")) {
- // COMPAT(levysotsky): "operation_type" is a deprecated synonym for "type".
+ // COMPAT(levysotsky): (YT-24340) "operation_type" is a deprecated synonym for "type".
// This branch should be removed when all clusters are updated.
result.Type = FromString<EOperationType>(operationTypeNode->AsString());
}