Remove unused constant in retry.go

This commit is contained in:
Hui Kang 2022-05-17 15:34:04 -04:00
parent 69c30069cf
commit c983f32e1c
1 changed files with 0 additions and 5 deletions

View File

@ -6,11 +6,6 @@ import (
"time"
)
const (
defaultMinFailures = 0
defaultMaxWait = 2 * time.Minute
)
// Jitter should return a new wait duration optionally with some time added or
// removed to create some randomness in wait time.
type Jitter func(baseTime time.Duration) time.Duration