Skip to content

Commit

Permalink
add build id to ResetPointInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
dnr committed Sep 27, 2023
1 parent 0346b32 commit e4fcfd3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions temporal/api/workflow/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,13 @@ message ResetPoints {
repeated ResetPointInfo points = 1;
}

// ResetPointInfo records the workflow event id that is the first one processed by a given
// build id or binary checksum. A new reset point will be created if either build id or binary
// checksum changes (although in general only one or the other will be used at a time).
message ResetPointInfo {
// A worker binary version identifier, will be deprecated and superseded by a newer concept of
// build_id.
// Worker build id.
string build_id = 7;
// A worker binary version identifier (deprecated).
string binary_checksum = 1;
// The first run ID in the execution chain that was touched by this worker build.
string run_id = 2;
Expand Down

0 comments on commit e4fcfd3

Please sign in to comment.