Skip to content

Commit a6122c2

Browse files
committed
rm initial_skipped_duration from start wf request
1 parent dd9b254 commit a6122c2

3 files changed

Lines changed: 0 additions & 13 deletions

File tree

openapi/openapiv2.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11442,10 +11442,6 @@
1144211442
"timeSkippingConfig": {
1144311443
"$ref": "#/definitions/v1TimeSkippingConfig",
1144411444
"description": "Time-skipping configuration. If not set, time skipping is disabled."
11445-
},
11446-
"initialSkippedDuration": {
11447-
"type": "string",
11448-
"description": "If a workflow execution is started by a previous execution (parent-child workflow or continue-as-new) \nthat has already skipped some time, the accumulated skipped duration from that execution \ncan be passed to the new workflow execution through this field."
1144911445
}
1145011446
}
1145111447
},

openapi/openapiv3.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15814,10 +15814,6 @@ components:
1581415814
allOf:
1581515815
- $ref: '#/components/schemas/TimeSkippingConfig'
1581615816
description: Time-skipping configuration. If not set, time skipping is disabled.
15817-
initialSkippedDuration:
15818-
pattern: ^-?(?:0|[1-9][0-9]{0,11})(?:\.[0-9]{1,9})?s$
15819-
type: string
15820-
description: "If a workflow execution is started by a previous execution (parent-child workflow or continue-as-new) \n that has already skipped some time, the accumulated skipped duration from that execution \n can be passed to the new workflow execution through this field."
1582115817
StartWorkflowExecutionResponse:
1582215818
type: object
1582315819
properties:

temporal/api/workflowservice/v1/request_response.proto

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,6 @@ message StartWorkflowExecutionRequest {
203203
// Time-skipping configuration. If not set, time skipping is disabled.
204204
temporal.api.workflow.v1.TimeSkippingConfig time_skipping_config = 29;
205205

206-
// If a workflow execution is started by a previous execution (parent-child workflow or continue-as-new)
207-
// that has already skipped some time, the accumulated skipped duration from that execution
208-
// can be passed to the new workflow execution through this field.
209-
google.protobuf.Duration initial_skipped_duration = 30;
210-
211206
}
212207

213208
message StartWorkflowExecutionResponse {

0 commit comments

Comments
 (0)