Merge pull request #13108 from hashicorp/remove-unused-constant

Remove unused constant in retry.go
This commit is contained in:
cskh 2022-05-17 15:45:36 -04:00 committed by GitHub
commit 9d4dc6ec1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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