From 3291492ff92747c7c03d84ea65dec5486a8f07f1 Mon Sep 17 00:00:00 2001 From: Ildar Khisambeev Date: Mon, 26 Aug 2024 08:01:31 +0000 Subject: [PATCH] Revert add status PROCESSING to statistics proto --- ydb/core/protos/statistics.proto | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ydb/core/protos/statistics.proto b/ydb/core/protos/statistics.proto index 08701e5ba138..838bc9f64e38 100644 --- a/ydb/core/protos/statistics.proto +++ b/ydb/core/protos/statistics.proto @@ -118,9 +118,9 @@ message TEvAnalyzeTable { // Shard -> SA message TEvAnalyzeTableResponse { - optional bytes OperationId = 1; - optional NKikimrProto.TPathID PathId = 2; - optional fixed64 ShardTabletId = 3; + optional bytes OperationId = 1; + optional NKikimrProto.TPathID PathId = 2; + optional fixed64 ShardTabletId = 3; } @@ -148,9 +148,8 @@ message TEvStatisticsResponse { enum EStatus { STATUS_UNSPECIFIED = 0; STATUS_SUCCESS = 1; - STATUS_PROCESSING = 2; - STATUS_ABORTED = 3; - STATUS_ERROR = 4; + STATUS_ABORTED = 2; + STATUS_ERROR = 3; } optional EStatus Status = 2; optional fixed64 ShardTabletId = 3;