Skip to content

Commit 21fb065

Browse files
committed
allow breaking change since no ts online
1 parent 0d6672c commit 21fb065

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

temporal/api/workflow/v1/message.proto

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -603,9 +603,6 @@ 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-
609606
// Enables or disables time skipping for this workflow execution.
610607
bool enabled = 1;
611608

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

623620
// Maximum elapsed time since time skipping was enabled.
624621
// This includes both skipped time and real time elapsing.
625622
// (-- api-linter: core::0142::time-field-names=disabled --)
626-
google.protobuf.Duration max_elapsed_duration = 5;
623+
google.protobuf.Duration max_elapsed_duration = 3;
627624
}
628625
}
629626

0 commit comments

Comments
 (0)