@@ -35,7 +35,7 @@ message WorkflowExecutionStartedEventAttributes {
35
35
// Contains information about parent workflow execution that initiated the child workflow these attributes belong to.
36
36
// If the workflow these attributes belong to is not a child workflow of any other execution, this field will not be populated.
37
37
temporal.api.common.v1.WorkflowExecution parent_workflow_execution = 3 ;
38
- // EventID of the child execution initiated event in parent workflow
38
+ // EventID of the child execution initiated event in parent workflow
39
39
int64 parent_initiated_event_id = 4 ;
40
40
temporal.api.taskqueue.v1.TaskQueue task_queue = 5 ;
41
41
// SDK will deserialize this and provide it as arguments to the workflow function
@@ -440,7 +440,7 @@ message ActivityTaskCanceledEventAttributes {
440
440
string identity = 5 ;
441
441
// Version info of the worker who processed this workflow task.
442
442
// Deprecated. This field should be cleaned up when versioning-2 API is removed. [cleanup-experimental-wv]
443
- temporal.api.common.v1.WorkerVersionStamp worker_version = 6 [deprecated = true ];;
443
+ temporal.api.common.v1.WorkerVersionStamp worker_version = 6 [deprecated = true ];
444
444
}
445
445
446
446
message TimerStartedEventAttributes {
@@ -475,8 +475,8 @@ message TimerCanceledEventAttributes {
475
475
476
476
message WorkflowExecutionCancelRequestedEventAttributes {
477
477
// User provided reason for requesting cancellation
478
- // TODO: shall we create a new field with name "reason" and deprecate this one?
479
- string cause = 1 ;
478
+ // TODO: shall we create a new field with name "reason" and deprecate this one?
479
+ string cause = 1 ;
480
480
// TODO: Is this the ID of the event in the workflow which initiated this cancel, if there was one?
481
481
int64 external_initiated_event_id = 2 ;
482
482
temporal.api.common.v1.WorkflowExecution external_workflow_execution = 3 ;
@@ -509,7 +509,7 @@ message WorkflowExecutionSignaledEventAttributes {
509
509
temporal.api.common.v1.Payloads input = 2 ;
510
510
// id of the worker/client who sent this signal
511
511
string identity = 3 ;
512
- // Headers that were passed by the sender of the signal and copied by temporal
512
+ // Headers that were passed by the sender of the signal and copied by temporal
513
513
// server into the workflow task.
514
514
temporal.api.common.v1.Header header = 4 ;
515
515
// This field is deprecated and never respected. It should always be set to false.
0 commit comments