Merge branch 'origin/main' into 'next-release/main'

This commit is contained in:
oauth 2024-04-09 06:06:41 +00:00
commit 2eb035b63e

View file

@ -53,6 +53,7 @@ func (c *client) Close() error {
func (c *client) newBackOff() backoff.BackOff {
b := backoff.NewExponentialBackOff()
b.MaxElapsedTime = 0
b.MaxInterval = 10 * time.Second //nolint: gomnd
b.InitialInterval = 10 * time.Millisecond //nolint: gomnd
return b