You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi/openapiv2.json
+3-8Lines changed: 3 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -18355,10 +18355,6 @@
18355
18355
"type": "boolean",
18356
18356
"description": "Enables or disables time skipping for this workflow execution."
18357
18357
},
18358
-
"propagatedSkippedDuration": {
18359
-
"type": "string",
18360
-
"description": "If this execution was started by a previous execution that already skipped some time,\nit inherits the virtual time through the propagated skipped duration."
18361
-
},
18362
18358
"maxSkippedDuration": {
18363
18359
"type": "string",
18364
18360
"description": "Maximum total virtual time that can be skipped."
@@ -18367,13 +18363,12 @@
18367
18363
"type": "string",
18368
18364
"description": "Maximum elapsed time since time skipping was enabled.\nThis includes both skipped time and real time elapsing."
18369
18365
},
18370
-
"maxTargetTime": {
18366
+
"initialSkippedDuration": {
18371
18367
"type": "string",
18372
-
"format": "date-time",
18373
-
"description": "Absolute virtual timestamp at which time skipping is disabled.\nTime skipping will not advance beyond this point."
18368
+
"description": "If this execution was started by a previous execution that had already skipped some time,\nit inherits the accumulated skipped duration from that execution through this field.\nThis field is set internally by the server and cannot be configured by the user."
18374
18369
}
18375
18370
},
18376
-
"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."
18371
+
"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.\n\nPropagation behavior of time skipping:\nThe enabled flag, bound fields, and accumulated skipped duration are propagated to related executions as follows:\n(1) Child workflows and continue-as-new: both the configuration and accumulated skipped duration are inherited\n from the current execution. The configured bound is shared across both the inherited skipped duration\n and any additional duration skipped by the new run.\n(2) Retry and cron: both the configuration and accumulated skipped duration are inherited as recorded in the\n StartWorkflowExecutionEvent of the current workflow and the accummulated skipped duration \n of the current run won't be passed.\n(3) Reset: the new run retains the time-skipping configuration of the current execution. Because reset replays\n all events up to the reset point and re-applies any UpdateWorkflowExecutionOptions changes made after that\n point, the resulting run ends up with the same final time-skipping configuration as the previous run."
Absolute virtual timestamp at which time skipping is disabled.
16267
-
Time skipping will not advance beyond this point.
16268
-
format: date-time
16269
-
description: |-
16270
-
Configuration for time skipping during a workflow execution.
16271
-
When enabled, virtual time advances automatically whenever there is no in-flight work.
16272
-
In-flight work includes activities, child workflows, Nexus operations, signal/cancel external workflow operations,
16273
-
and possibly other features added in the future.
16274
-
User timers are not classified as in-flight work and will be skipped over.
16275
-
When time advances, it skips to the earlier of the next user timer or the configured bound, if either exists.
16261
+
If this execution was started by a previous execution that had already skipped some time,
16262
+
it inherits the accumulated skipped duration from that execution through this field.
16263
+
This field is set internally by the server and cannot be configured by the user.
16264
+
description: "Configuration for time skipping during a workflow execution.\n When enabled, virtual time advances automatically whenever there is no in-flight work.\n In-flight work includes activities, child workflows, Nexus operations, signal/cancel external workflow operations,\n and possibly other features added in the future.\n User timers are not classified as in-flight work and will be skipped over.\n When time advances, it skips to the earlier of the next user timer or the configured bound, if either exists.\n \n Propagation behavior of time skipping:\n The enabled flag, bound fields, and accumulated skipped duration are propagated to related executions as follows:\n (1) Child workflows and continue-as-new: both the configuration and accumulated skipped duration are inherited\n from the current execution. The configured bound is shared across both the inherited skipped duration\n and any additional duration skipped by the new run.\n (2) Retry and cron: both the configuration and accumulated skipped duration are inherited as recorded in the\n StartWorkflowExecutionEvent of the current workflow and the accummulated skipped duration \n of the current run won't be passed.\n (3) Reset: the new run retains the time-skipping configuration of the current execution. Because reset replays\n all events up to the reset point and re-applies any UpdateWorkflowExecutionOptions changes made after that\n point, the resulting run ends up with the same final time-skipping configuration as the previous run."
0 commit comments