From 10cea4324e55da39e42b355f6536680f9daa36c6 Mon Sep 17 00:00:00 2001 From: Ning Xie Date: Tue, 7 Jan 2020 02:22:54 +0800 Subject: [PATCH] internal: fix initialBackoff typo (#3289) --- service_config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service_config.go b/service_config.go index 4f8836d48..5a80a575a 100644 --- a/service_config.go +++ b/service_config.go @@ -136,9 +136,9 @@ type retryPolicy struct { maxAttempts int // Exponential backoff parameters. The initial retry attempt will occur at - // random(0, initialBackoffMS). In general, the nth attempt will occur at + // random(0, initialBackoff). In general, the nth attempt will occur at // random(0, - // min(initialBackoffMS*backoffMultiplier**(n-1), maxBackoffMS)). + // min(initialBackoff*backoffMultiplier**(n-1), maxBackoff)). // // These fields are required and must be greater than zero. initialBackoff time.Duration