PuerkitoBio / rehttp

Package rehttp implements a Go HTTP transport that handles retries.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rehttp Build Status Go Reference

Package rehttp implements an HTTP Transport (an http.RoundTripper) that handles retries. See the godoc for details.

Please note that rehttp requires Go1.6+, because it uses the http.Request.Cancel field to check for cancelled requests. It should work on Go1.5, but only if there is no timeout set on the *http.Client. Go's stdlib will return an error on the first request if that's the case, because it requires a RoundTripper that implements the (now deprecated in Go1.6) CancelRequest method.

On Go1.7+, it uses the context returned by http.Request.Context to check for cancelled requests.

Installation

$ go get github.com/PuerkitoBio/rehttp

License

The BSD 3-Clause license.

About

Package rehttp implements a Go HTTP transport that handles retries.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Go 98.6%Language:Shell 1.4%