Skip to content

Tags: erenwh/backoff

Tags

v4.1.2

Toggle v4.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Remove context deadline checking in backOffContext (cenkalti#113)

* Remove ctx deadline check

* Add context error checking after stop

v4.1.1

Toggle v4.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Remove context deadline checking in backOffContext (cenkalti#113)

* Remove ctx deadline check

* Add context error checking after stop

v4.1.0

Toggle v4.1.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
bump minimal go version to 1.13

v4.0.2

Toggle v4.0.2's commit message

Verified

This commit was signed with the committer’s verified signature.
cenkalti Cenk Altı
add next interval to elapsed time before deciding to stop exponential…

… backoff cenkalti#95

v4.0.1

Toggle v4.0.1's commit message
Fix crash if nil passed to NewTickerWithTimer

Doc for function says that passing nil for the timer argument should
cause the default system timer to be used.  Ensure that that timer is
actually assigned.

v3.2.2

Toggle v3.2.2's commit message

Verified

This commit was signed with the committer’s verified signature.
cenkalti Cenk Altı
do not panic when stopping nil timer; fix cenkalti#88

v4.0.0

Toggle v4.0.0's commit message

Verified

This commit was signed with the committer’s verified signature.
cenkalti Cenk Altı
require minimum go 1.12

v3.2.1

Toggle v3.2.1's commit message

Verified

This commit was signed with the committer’s verified signature.
cenkalti Cenk Altı
Merge branch 'justin-mp-v3' into v3

* justin-mp-v3:
  Return context error from RetryNotify when done

v3.2.0

Toggle v3.2.0's commit message

Verified

This commit was signed with the committer’s verified signature.
cenkalti Cenk Altı
Merge branch 'Oppodelldog-v3' into v3; fix cenkalti#74

* Oppodelldog-v3:
  fix flaky ticker test
  unexport DefaultTimer
  refactor; move Timer to its own file
  provide custom timer in tests to speed up
  add NewTickerWithTimer function
  Abstract timer corresponding logic towards an interface to enable  user defined timer behavior. By default time.Timer is used as timer.

v3.1.2

Toggle v3.1.2's commit message

Verified

This commit was signed with the committer’s verified signature.
cenkalti Cenk Altı
respect context in WithMaxTries; fix cenkalti#86