From e4fcfd3953dbaaa3e30ff10f8764f67312e60fc4 Mon Sep 17 00:00:00 2001 From: David Reiss Date: Thu, 14 Sep 2023 00:13:02 -0700 Subject: [PATCH] add build id to ResetPointInfo --- temporal/api/workflow/v1/message.proto | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/temporal/api/workflow/v1/message.proto b/temporal/api/workflow/v1/message.proto index bb83f40b..6208acf5 100644 --- a/temporal/api/workflow/v1/message.proto +++ b/temporal/api/workflow/v1/message.proto @@ -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;