Skip to content

Commit

Permalink
Reduce retry aggressivness (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitarb committed Aug 2, 2021
1 parent 4ba9e5c commit 6fe2ed7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/internal_retry.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ import (
)

const (
retryServiceOperationInitialInterval = 20 * time.Millisecond
retryServiceOperationInitialInterval = 200 * time.Millisecond
retryServiceOperationExpirationInterval = 60 * time.Second
retryServiceOperationBackoff = 1.2
retryServiceOperationBackoff = 2
)

// Creates a retry policy which allows appropriate retries for the deadline passed in as context.
Expand Down

0 comments on commit 6fe2ed7

Please sign in to comment.