Skip to content

Commit 381a52c

Browse files
committed
add time-skipping config in WorkflowExecutionStartedEventAttributes
1 parent 9461f7b commit 381a52c

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

temporal/api/history/v1/message.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@ message WorkflowExecutionStartedEventAttributes {
196196
// Used internally by the server during continue-as-new and retry.
197197
// Should not be read or interpreted by SDKs.
198198
DeclinedTargetVersionUpgrade declined_target_version_upgrade = 40;
199+
200+
// Time-skipping configuration for this workflow execution.
201+
temporal.api.workflow.v1.TimeSkippingConfig time_skipping_config = 41;
199202
}
200203

201204
// Wrapper for a target deployment version that the SDK declined to upgrade to.

temporal/api/workflow/v1/message.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ message WorkflowExecutionOptions {
581581
message TimeSkippingConfig {
582582

583583
// Enables or disables time skipping for this workflow execution.
584-
// By default, this field is propagated to transitively related workflows (child workflows/start-as-new/reset)
584+
// By default, this field is propagated to transitively related workflows (child workflows/start-as-new/reset)
585585
// at the time they are started.
586586
// Changes made after a transitively related workflow has started are not propagated.
587587
bool enabled = 1;

0 commit comments

Comments
 (0)