Skip to content

Commit

Permalink
handle HTTP 408 as retryable (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Karn authored Apr 28, 2022
1 parent 2d71977 commit 6c2e831
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.43.0
version: v1.45.2
1 change: 1 addition & 0 deletions net/http/retryable.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ var (
http.StatusTooManyRequests: true,
http.StatusBadGateway: true,
http.StatusGatewayTimeout: true,
http.StatusRequestTimeout: true,

// 524 is a Cloudflare specific error which indicates it connected to the origin server but did not receive
// response within 100 seconds and so times out.
Expand Down

0 comments on commit 6c2e831

Please sign in to comment.