Skip to content

Commit

Permalink
add status processing (#6609)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildar-khisambeev authored Aug 14, 2024
1 parent ec4bf84 commit 63c9b91
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ydb/core/protos/statistics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ message TEvAnalyzeTable {

// Shard -> SA
message TEvAnalyzeTableResponse {
optional NKikimrProto.TPathID PathId = 1;
optional NKikimrProto.TPathID PathId = 1;
}


Expand Down Expand Up @@ -145,8 +145,9 @@ message TEvStatisticsResponse {
enum EStatus {
STATUS_UNSPECIFIED = 0;
STATUS_SUCCESS = 1;
STATUS_ABORTED = 2;
STATUS_ERROR = 3;
STATUS_PROCESSING = 2;
STATUS_ABORTED = 3;
STATUS_ERROR = 4;
}
optional EStatus Status = 2;
optional fixed64 ShardTabletId = 3;
Expand Down

0 comments on commit 63c9b91

Please sign in to comment.