Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert add status PROCESSING to statistics proto #8253

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions ydb/core/protos/statistics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}


Expand Down Expand Up @@ -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;
Expand Down
Loading