Skip to content

Commit 0cfccb6

Browse files
committed
rm ts from patch schedulers
1 parent e549216 commit 0cfccb6

5 files changed

Lines changed: 1 addition & 36 deletions

File tree

openapi/openapiv2.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13504,10 +13504,6 @@
1350413504
"startDelay": {
1350513505
"type": "string",
1350613506
"description": "Time to wait before dispatching the first activity task. This delay is not applied to retry attempts."
13507-
},
13508-
"timeSkippingConfig": {
13509-
"$ref": "#/definitions/v1TimeSkippingConfig",
13510-
"description": "The current time-skipping configuration for this activity. Reflects the value set at start\nand any subsequent updates via UpdateActivityExecutionOptions. Nil if time skipping is disabled."
1351113507
}
1351213508
},
1351313509
"description": "Information about a standalone activity."
@@ -13669,10 +13665,6 @@
1366913665
"priority": {
1367013666
"$ref": "#/definitions/v1Priority",
1367113667
"description": "Priority metadata. If this message is not present, or any fields are not\npresent, they inherit the values from the workflow."
13672-
},
13673-
"timeSkippingConfig": {
13674-
"$ref": "#/definitions/v1TimeSkippingConfig",
13675-
"description": "Time-skipping configuration."
1367613668
}
1367713669
}
1367813670
},
@@ -18873,10 +18865,6 @@
1887318865
},
1887418866
"unpause": {
1887518867
"type": "string"
18876-
},
18877-
"timeSkippingConfig": {
18878-
"$ref": "#/definitions/v1TimeSkippingConfig",
18879-
"description": "If set, updates the time-skipping configuration for this schedule."
1888018868
}
1888118869
}
1888218870
},

openapi/openapiv3.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9852,12 +9852,6 @@ components:
98529852
pattern: ^-?(?:0|[1-9][0-9]{0,11})(?:\.[0-9]{1,9})?s$
98539853
type: string
98549854
description: Time to wait before dispatching the first activity task. This delay is not applied to retry attempts.
9855-
timeSkippingConfig:
9856-
allOf:
9857-
- $ref: '#/components/schemas/TimeSkippingConfig'
9858-
description: |-
9859-
The current time-skipping configuration for this activity. Reflects the value set at start
9860-
and any subsequent updates via UpdateActivityExecutionOptions. Nil if time skipping is disabled.
98619855
description: Information about a standalone activity.
98629856
ActivityExecutionListInfo:
98639857
type: object
@@ -10003,10 +9997,6 @@ components:
100039997
description: |-
100049998
Priority metadata. If this message is not present, or any fields are not
100059999
present, they inherit the values from the workflow.
10006-
timeSkippingConfig:
10007-
allOf:
10008-
- $ref: '#/components/schemas/TimeSkippingConfig'
10009-
description: Time-skipping configuration.
1001010000
ActivityPropertiesModifiedExternallyEventAttributes:
1001110001
type: object
1001210002
properties:
@@ -15802,10 +15792,6 @@ components:
1580215792
notes field to the value of the string.
1580315793
unpause:
1580415794
type: string
15805-
timeSkippingConfig:
15806-
allOf:
15807-
- $ref: '#/components/schemas/TimeSkippingConfig'
15808-
description: If set, updates the time-skipping configuration for this schedule.
1580915795
SchedulePolicies:
1581015796
type: object
1581115797
properties:

temporal/api/activity/v1/message.proto

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ message ActivityOptions {
6363
// Priority metadata. If this message is not present, or any fields are not
6464
// present, they inherit the values from the workflow.
6565
temporal.api.common.v1.Priority priority = 7;
66-
67-
// Time-skipping configuration.
68-
temporal.api.common.v1.TimeSkippingConfig time_skipping_config = 8;
6966
}
7067

7168
// Information about a standalone activity.
@@ -184,10 +181,6 @@ message ActivityExecutionInfo {
184181

185182
// Time to wait before dispatching the first activity task. This delay is not applied to retry attempts.
186183
google.protobuf.Duration start_delay = 37;
187-
188-
// The current time-skipping configuration for this activity. Reflects the value set at start
189-
// and any subsequent updates via UpdateActivityExecutionOptions. Nil if time skipping is disabled.
190-
temporal.api.common.v1.TimeSkippingConfig time_skipping_config = 38;
191184
}
192185

193186
// Limited activity information returned in the list response.

temporal/api/history/v1/message.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ message WorkflowExecutionStartedEventAttributes {
212212
// The time-skipping state propagated from a previous run of this workflow. This can be nil
213213
// if no time skipping has occurred or there is no previous run.
214214
temporal.api.common.v1.TimeSkippingStatePropagation time_skipping_state_propagation = 43;
215+
215216
}
216217

217218

temporal/api/schedule/v1/message.proto

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,9 +310,6 @@ message SchedulePatch {
310310
// notes field to the value of the string.
311311
string pause = 3;
312312
string unpause = 4;
313-
314-
// If set, updates the time-skipping configuration for this schedule.
315-
temporal.api.common.v1.TimeSkippingConfig time_skipping_config = 5;
316313
}
317314

318315
message ScheduleInfo {

0 commit comments

Comments
 (0)