From 31eada0cd8f657ffb9d67c38152f4d49d84f3faf Mon Sep 17 00:00:00 2001 From: Yichao Yang Date: Thu, 10 Aug 2023 09:29:25 -0700 Subject: [PATCH] Reduce frontend handler retry max attempts (#4753) --- common/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/util.go b/common/util.go index ad1bf52cef5..293cb305646 100644 --- a/common/util.go +++ b/common/util.go @@ -69,7 +69,7 @@ const ( frontendHandlerRetryInitialInterval = 200 * time.Millisecond frontendHandlerRetryMaxInterval = time.Second - frontendHandlerRetryMaxAttempts = 5 + frontendHandlerRetryMaxAttempts = 2 historyHandlerRetryInitialInterval = 50 * time.Millisecond historyHandlerRetryMaxAttempts = 2