Skip to content

Commit b9d4b1b

Browse files
committed
delete max target time
1 parent 27475f8 commit b9d4b1b

3 files changed

Lines changed: 2 additions & 18 deletions

File tree

openapi/openapiv2.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17145,11 +17145,6 @@
1714517145
"maxElapsedDuration": {
1714617146
"type": "string",
1714717147
"description": "Maximum elapsed time since time skipping was enabled.\nThis includes both skipped time and real time elapsing."
17148-
},
17149-
"maxTargetTime": {
17150-
"type": "string",
17151-
"format": "date-time",
17152-
"description": "Absolute virtual timestamp at which time skipping is disabled.\nTime skipping will not advance beyond this point."
1715317148
}
1715417149
},
1715517150
"description": "Configuration for time skipping during a workflow execution.\nWhen enabled, virtual time advances automatically whenever there is no in-flight work.\nIn-flight work includes activities, child workflows, Nexus operations, signal/cancel external workflow operations,\nand possibly other features added in the future.\nUser timers are not classified as in-flight work and will be skipped over.\nWhen time advances, it skips to the earlier of the next user timer or the configured bound, if either exists."

openapi/openapiv3.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15124,12 +15124,6 @@ components:
1512415124
description: |-
1512515125
Maximum elapsed time since time skipping was enabled.
1512615126
This includes both skipped time and real time elapsing.
15127-
maxTargetTime:
15128-
type: string
15129-
description: |-
15130-
Absolute virtual timestamp at which time skipping is disabled.
15131-
Time skipping will not advance beyond this point.
15132-
format: date-time
1513315127
description: |-
1513415128
Configuration for time skipping during a workflow execution.
1513515129
When enabled, virtual time advances automatically whenever there is no in-flight work.

temporal/api/workflow/v1/message.proto

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -590,8 +590,8 @@ message WorkflowExecutionOptions {
590590
// User timers are not classified as in-flight work and will be skipped over.
591591
// When time advances, it skips to the earlier of the next user timer or the configured bound, if either exists.
592592
message TimeSkippingConfig {
593-
reserved 2;
594-
reserved "disable_propagation";
593+
reserved 2, 6;
594+
reserved "disable_propagation", "max_target_time";
595595

596596
// Enables or disables time skipping for this workflow execution.
597597
bool enabled = 1;
@@ -613,18 +613,13 @@ message TimeSkippingConfig {
613613
// - Continue-as-new is an exception: continued workflow executions are treated as extensions of the
614614
// original execution, so the bound is shared across all executions in the chain.
615615
oneof bound {
616-
617616
// Maximum total virtual time that can be skipped.
618617
google.protobuf.Duration max_skipped_duration = 4;
619618

620619
// Maximum elapsed time since time skipping was enabled.
621620
// This includes both skipped time and real time elapsing.
622621
// (-- api-linter: core::0142::time-field-names=disabled --)
623622
google.protobuf.Duration max_elapsed_duration = 5;
624-
625-
// Absolute virtual timestamp at which time skipping is disabled.
626-
// Time skipping will not advance beyond this point.
627-
google.protobuf.Timestamp max_target_time = 6;
628623
}
629624
}
630625

0 commit comments

Comments
 (0)