File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
592592message 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
You can’t perform that action at this time.
0 commit comments