Skip to content

Commit

Permalink
fix: add unit tests and resolve rollbackstate
Browse files Browse the repository at this point in the history
Signed-off-by: Yogesh01000100 <[email protected]>
  • Loading branch information
Yogesh01000100 committed Oct 16, 2024
1 parent 3851603 commit 49e1135
Show file tree
Hide file tree
Showing 24 changed files with 1,235 additions and 438 deletions.
2 changes: 1 addition & 1 deletion packages/cactus-plugin-satp-hermes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"kubo-rpc-client": "3.0.1",
"npm-run-all": "4.1.5",
"openzeppelin-solidity": "3.4.2",
"pg": "^8.8.0",
"pg": "^8.13.0",
"secp256k1": "4.0.3",
"socket.io": "4.6.2",
"sqlite3": "5.1.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,14 @@ message RollbackLogEntry {
string action = 4; // action performed during rollback
string status = 5; // status of rollback (e.g., SUCCESS, FAILED)
string details = 6; // Additional details or metadata about the rollback
}

message RollbackState {
string session_id = 1;
string current_stage = 2;
int32 steps_remaining = 3;
repeated RollbackLogEntry rollback_log_entries = 4;
string estimated_time_to_completion = 5;
string status = 6; // Overall status (e.g., IN_PROGRESS, COMPLETED, FAILED)
string details = 7; // Additional metadata or information
}
Loading

0 comments on commit 49e1135

Please sign in to comment.