├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── actionlint.yml │ ├── pr-gofmt.yaml │ └── pr-unit-tests.yaml ├── .gitignore ├── .go-version ├── .golangci.yml ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── cert_error_go119.go ├── cert_error_go120.go ├── client.go ├── client_test.go ├── go.mod ├── go.sum ├── roundtripper.go └── roundtripper_test.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-gofmt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/.github/workflows/pr-gofmt.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/.github/workflows/pr-unit-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.23 2 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/README.md -------------------------------------------------------------------------------- /cert_error_go119.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/cert_error_go119.go -------------------------------------------------------------------------------- /cert_error_go120.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/cert_error_go120.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/client_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/go.sum -------------------------------------------------------------------------------- /roundtripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/roundtripper.go -------------------------------------------------------------------------------- /roundtripper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-retryablehttp/HEAD/roundtripper_test.go --------------------------------------------------------------------------------