Skip to content

Tags: cenkalti/backoff

Tags

v4.3.0

Toggle v4.3.0's commit message

Verified

This commit was signed with the committer’s verified signature.
cenkalti Cenk Altı
remove travis badge from readme

v4.2.1

Toggle v4.2.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
set minimum permissions for go.yaml

Signed-off-by: Gabriela Gutierrez <[email protected]>

v4.2.0

Toggle v4.2.0's commit message
Remove travis

v4.1.3

Toggle v4.1.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
make sure no randomness is used when randomizationFactor is 0 (#118)

in current implementation there is the following issue - it's not possible to disable randomization.
I'd expect that if I set randomizationFactor to 0, no randomness will be done.

I've updated the code accordingly to fix the issue.

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 (#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 (#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 #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 #88