-
Notifications
You must be signed in to change notification settings - Fork 69
add create_request_id to child initiated event #598
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -665,6 +665,9 @@ message StartChildWorkflowExecutionInitiatedEventAttributes { | |
bool inherit_build_id = 19; | ||
// Priority metadata | ||
temporal.api.common.v1.Priority priority = 20; | ||
// A unique identifier for the request to start this child workflow execution. This is used to | ||
// deduplicate requests to start a child workflow execution with the same workflow ID. | ||
string create_request_id = 21; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will this event be in the map at There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No. Child workflow's executionState.RequestIds[StartRequest.GetRequestId()] stores startEvent of the child workflow. (code) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I assume the tuple of workflow run ID + event ID is not enough? |
||
} | ||
|
||
message StartChildWorkflowExecutionFailedEventAttributes { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May not need the
create_
prefix, but not a big deal