From 1cb5c7f610dce8a203b1d55ad227cad0e99f051e Mon Sep 17 00:00:00 2001 From: slinkydeveloper Date: Tue, 27 Aug 2024 18:28:23 +0200 Subject: [PATCH] next_retry_interval -> next_retry_delay --- dev/restate/service/protocol.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/restate/service/protocol.proto b/dev/restate/service/protocol.proto index 56d87c6..f7aa8b8 100644 --- a/dev/restate/service/protocol.proto +++ b/dev/restate/service/protocol.proto @@ -20,7 +20,7 @@ enum ServiceProtocolVersion { // initial service protocol version V1 = 1; // Added - // * Entry retry mechanism: ErrorMessage.next_retry_interval, StartMessage.retry_count_since_last_stored_entry and StartMessage.duration_since_last_stored_entry + // * Entry retry mechanism: ErrorMessage.next_retry_delay, StartMessage.retry_count_since_last_stored_entry and StartMessage.duration_since_last_stored_entry V2 = 2; } @@ -106,9 +106,9 @@ message ErrorMessage { // Entry type. optional uint32 related_entry_type = 6; - // Interval before executing the next retry, specified as duration in milliseconds. + // Delay before executing the next retry, specified as duration in milliseconds. // If provided, it will override the default retry policy used by Restate's invoker ONLY for the next retry attempt. - optional uint64 next_retry_interval = 8; + optional uint64 next_retry_delay = 8; } // Type: 0x0000 + 4