Skip to content

Commit

Permalink
fix: increase backoff time
Browse files Browse the repository at this point in the history
  • Loading branch information
dmksnnk committed Jun 27, 2024
1 parent a0987ed commit 2fb9992
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions connection/connection_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ func (s *TestSuite) SetupSuite() {

s.rmqURL = rmqURL
bo := backoff.NewExponentialBackOff()
bo.InitialInterval = 10 * time.Millisecond
bo.MaxElapsedTime = 5 * time.Second
bo.InitialInterval = 1 * time.Second
bo.MaxElapsedTime = 20 * time.Second
s.backoff = backoff.WithMaxRetries(bo, 5)
}

Expand Down

0 comments on commit 2fb9992

Please sign in to comment.