-
Notifications
You must be signed in to change notification settings - Fork 231
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
Support user metadata on activities and child/scheduled workflows #1719
Support user metadata on activities and child/scheduled workflows #1719
Conversation
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.
LGTM, but may have to wait for a 1.26 server release for temporalio/temporal#6412. Not sure why activity metadata test is failing though.
@cretz temporalio/temporal#6412 is already in |
17e5bc3
to
bd154a4
Compare
@@ -727,6 +731,7 @@ func (d *childWorkflowCommandStateMachine) getCommand() *commandpb.Command { | |||
command := createNewCommand(enumspb.COMMAND_TYPE_START_CHILD_WORKFLOW_EXECUTION) | |||
command.Attributes = &commandpb.Command_StartChildWorkflowExecutionCommandAttributes{StartChildWorkflowExecutionCommandAttributes: d.attributes} | |||
command.UserMetadata = d.startMetadata | |||
fmt.Println("command.UserMetadata", command.UserMetadata) |
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.
want to remove before merging?
internal/workflow.go
Outdated
|
||
options.StaticDetails = workflowOptionsFromCtx.StaticDetails | ||
options.StaticSummary = workflowOptionsFromCtx.StaticSummary | ||
fmt.Println("$$$$$ options", options) |
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.
this one too?
bd154a4
to
71c3f7a
Compare
…mporalio#1719) Support user metadata on activities and child/scheduled workflows
Support user metadata on activities and child/scheduled workflows
closes #1673