ceph-csi/vendor/github.com/cenkalti/backoff/v3
dependabot[bot] ba40da7e36 rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9
Bumps [github.com/hashicorp/vault](https://github.com/hashicorp/vault) from 1.4.2 to 1.9.9.
- [Release notes](https://github.com/hashicorp/vault/releases)
- [Changelog](https://github.com/hashicorp/vault/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hashicorp/vault/compare/v1.4.2...v1.9.9)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/vault
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-09 10:59:45 +00:00
..
.gitignore rebase: update vault/api to v1.1.1 2021-09-29 05:55:26 +00:00
.travis.yml rebase: update vault/api to v1.1.1 2021-09-29 05:55:26 +00:00
backoff.go rebase: update vault/api to v1.1.1 2021-09-29 05:55:26 +00:00
context.go rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9 2023-03-09 10:59:45 +00:00
exponential.go rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9 2023-03-09 10:59:45 +00:00
LICENSE rebase: update vault/api to v1.1.1 2021-09-29 05:55:26 +00:00
README.md rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9 2023-03-09 10:59:45 +00:00
retry.go rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9 2023-03-09 10:59:45 +00:00
ticker.go rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9 2023-03-09 10:59:45 +00:00
timer.go rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9 2023-03-09 10:59:45 +00:00
tries.go rebase: update vault/api to v1.1.1 2021-09-29 05:55:26 +00:00

Exponential Backoff GoDoc Build Status Coverage Status

This is a Go port of the exponential backoff algorithm from Google's HTTP Client Library for Java.

Exponential backoff is an algorithm that uses feedback to multiplicatively decrease the rate of some process, in order to gradually find an acceptable rate. The retries exponentially increase and stop increasing when a certain threshold is met.

Usage

Import path is github.com/cenkalti/backoff/v3. Please note the version part at the end.

godoc.org does not support modules yet, so you can use https://godoc.org/gopkg.in/cenkalti/backoff.v3 to view the documentation.

Contributing

  • I would like to keep this library as small as possible.
  • Please don't send a PR without opening an issue and discussing it first.
  • If proposed change is not a common use case, I will probably not accept it.