Skip to content

Commit 824fb6a

Browse files
committed
revert allow breaking changes
1 parent 21fb065 commit 824fb6a

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

temporal/api/workflow/v1/message.proto

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,9 @@ message WorkflowExecutionOptions {
603603
// all events up to the reset point and re-applies any UpdateWorkflowExecutionOptions changes made after that
604604
// point, the resulting run ends up with the same final time-skipping configuration as the previous run.
605605
message TimeSkippingConfig {
606+
reserved 2, 6;
607+
reserved "disable_propagation", "max_target_time";
608+
606609
// Enables or disables time skipping for this workflow execution.
607610
bool enabled = 1;
608611

@@ -615,12 +618,12 @@ message TimeSkippingConfig {
615618
// signals, updates, or other external events while timers are in progress.
616619
oneof bound {
617620
// Maximum total virtual time that can be skipped.
618-
google.protobuf.Duration max_skipped_duration = 2;
621+
google.protobuf.Duration max_skipped_duration = 4;
619622

620623
// Maximum elapsed time since time skipping was enabled.
621624
// This includes both skipped time and real time elapsing.
622625
// (-- api-linter: core::0142::time-field-names=disabled --)
623-
google.protobuf.Duration max_elapsed_duration = 3;
626+
google.protobuf.Duration max_elapsed_duration = 5;
624627
}
625628
}
626629

0 commit comments

Comments
 (0)