From c5c2f8f7125034c611edf1d08ca35ece6554c454 Mon Sep 17 00:00:00 2001 From: Alex Hong <9397363+hongalex@users.noreply.github.com> Date: Fri, 21 Oct 2022 14:46:14 -0700 Subject: [PATCH] docs(pubsub): update subscription retry policy defaults (#6909) Fixes #6903 --- pubsub/subscription.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubsub/subscription.go b/pubsub/subscription.go index c3e6b4ad654..f325e65e314 100644 --- a/pubsub/subscription.go +++ b/pubsub/subscription.go @@ -580,7 +580,7 @@ type RetryPolicy struct { // given message. Value should be between 0 and 600 seconds. Defaults to 10 seconds. MinimumBackoff optional.Duration // MaximumBackoff is the maximum delay between consecutive deliveries of a - // given message. Value should be between 0 and 600 seconds. Defaults to 10 seconds. + // given message. Value should be between 0 and 600 seconds. Defaults to 600 seconds. MaximumBackoff optional.Duration }