feat: add PrepareRollback, RollingBack to procedure state (#142)

* feat: add `CommitRollback`, `RollingBack` to procedure state

* refactor: rename to `PrepareRollback`
This commit is contained in:
Weny Xu
2024-04-08 17:30:44 +08:00
committed by GitHub
parent 1bd2398b68
commit c00c73b76e
5 changed files with 90 additions and 55 deletions
+2
View File
@@ -17,6 +17,8 @@ enum ProcedureStatus {
Done = 1;
Retrying = 2;
Failed = 3;
PrepareRollback = 4;
RollingBack = 5;
}
message QueryProcedureRequest {