From 4adcc10383c2d050a5050fb8e69307b69bc2c533 Mon Sep 17 00:00:00 2001 From: Abdul Qadeer Date: Mon, 19 Oct 2020 15:24:26 -0700 Subject: [PATCH] Increase backoff steps and reduce factor --- cmd/root.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 3b5889d..95ab9a8 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -146,9 +146,9 @@ func connect(cmd *cobra.Command, args []string) { realis.ThriftJSON(), realis.Timeout(timeout), realis.BackOff(realis.Backoff{ - Steps: 2, + Steps: 6, Duration: 10 * time.Second, - Factor: 2.0, + Factor: 1.5, Jitter: 0.1, }), realis.SetLogger(log)}