Skip to content

Commit 1e99f6f

Browse files
committed
Fix copy/paste errors
1 parent 37ccf65 commit 1e99f6f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

openapi/openapiv2.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10785,15 +10785,15 @@
1078510785
"properties": {
1078610786
"attachRequestId": {
1078710787
"type": "boolean",
10788-
"description": "Attaches the request ID to the running workflow."
10788+
"description": "Attaches the request ID to the running activity."
1078910789
},
1079010790
"attachCompletionCallbacks": {
1079110791
"type": "boolean",
10792-
"description": "Attaches the completion callbacks to the running workflow."
10792+
"description": "Attaches the completion callbacks to the running activity."
1079310793
},
1079410794
"attachLinks": {
1079510795
"type": "boolean",
10796-
"description": "Attaches the links to the WorkflowExecutionOptionsUpdatedEvent history event."
10796+
"description": "Attaches the links to the running activity."
1079710797
}
1079810798
},
1079910799
"description": "When StartActivityExecution uses the ACTIVITY_ID_CONFLICT_POLICY_USE_EXISTING and there is already an existing running\nactivity, OnConflictOptions defines actions to be taken on the existing running activity, updating its state."
@@ -16769,7 +16769,7 @@
1676916769
},
1677016770
"link": {
1677116771
"$ref": "#/definitions/apicommonv1Link",
16772-
"description": "Link to the workflow event."
16772+
"description": "Link to the activity."
1677316773
}
1677416774
}
1677516775
},

openapi/openapiv3.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11202,13 +11202,13 @@ components:
1120211202
properties:
1120311203
attachRequestId:
1120411204
type: boolean
11205-
description: Attaches the request ID to the running workflow.
11205+
description: Attaches the request ID to the running activity.
1120611206
attachCompletionCallbacks:
1120711207
type: boolean
11208-
description: Attaches the completion callbacks to the running workflow.
11208+
description: Attaches the completion callbacks to the running activity.
1120911209
attachLinks:
1121011210
type: boolean
11211-
description: Attaches the links to the WorkflowExecutionOptionsUpdatedEvent history event.
11211+
description: Attaches the links to the running activity.
1121211212
description: |-
1121311213
When StartActivityExecution uses the ACTIVITY_ID_CONFLICT_POLICY_USE_EXISTING and there is already an existing running
1121411214
activity, OnConflictOptions defines actions to be taken on the existing running activity, updating its state.
@@ -13883,7 +13883,7 @@ components:
1388313883
link:
1388413884
allOf:
1388513885
- $ref: '#/components/schemas/Link'
13886-
description: Link to the workflow event.
13886+
description: Link to the activity.
1388713887
StartBatchOperationRequest:
1388813888
type: object
1388913889
properties:

temporal/api/activity/v1/message.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ import "temporal/api/sdk/v1/user_metadata.proto";
2323
// When StartActivityExecution uses the ACTIVITY_ID_CONFLICT_POLICY_USE_EXISTING and there is already an existing running
2424
// activity, OnConflictOptions defines actions to be taken on the existing running activity, updating its state.
2525
message OnConflictOptions {
26-
// Attaches the request ID to the running workflow.
26+
// Attaches the request ID to the running activity.
2727
bool attach_request_id = 1;
28-
// Attaches the completion callbacks to the running workflow.
28+
// Attaches the completion callbacks to the running activity.
2929
bool attach_completion_callbacks = 2;
30-
// Attaches the links to the WorkflowExecutionOptionsUpdatedEvent history event.
30+
// Attaches the links to the running activity.
3131
bool attach_links = 3;
3232
}
3333

temporal/api/workflowservice/v1/request_response.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2663,7 +2663,7 @@ message StartActivityExecutionResponse {
26632663
// activity task to be eagerly executed.
26642664
// The caller is expected to have a worker available to process the task.
26652665
PollActivityTaskQueueResponse eager_task = 3;
2666-
// Link to the workflow event.
2666+
// Link to the activity.
26672667
temporal.api.common.v1.Link link = 4;
26682668
}
26692669

0 commit comments

Comments
 (0)