Skip to content

Commit

Permalink
Make the 3 additional fields about related entry in ErrorMessage opti…
Browse files Browse the repository at this point in the history
…onal
  • Loading branch information
slinkydeveloper committed Apr 17, 2024
1 parent a4a8596 commit 57a9437
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dev/restate/service/protocol.proto
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ message ErrorMessage {

// Entry that caused the failure. This may be outside the current stored journal size.
// If no specific entry caused the failure, the current replayed/processed entry can be used.
uint32 related_entry_index = 4;
// Name of the entry that caused the failure. Empty if no name was set.
string related_entry_name = 5;
// Entry type. 0 if unknown.
uint32 related_entry_type = 6;
optional uint32 related_entry_index = 4;
// Name of the entry that caused the failure.
optional string related_entry_name = 5;
// Entry type.
optional uint32 related_entry_type = 6;
}

// Type: 0x0000 + 4
Expand Down

0 comments on commit 57a9437

Please sign in to comment.