Merge pull request #76 from calavera/fix_canceler_14_conversion

Fix implicit conversion of transport sender in canceler_14.
This commit is contained in:
Antonio Murdaca 2016-02-04 11:36:10 +01:00
Родитель aca2ca42ea 141aaae18f
Коммит 96789fcb9a
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -16,7 +16,7 @@ type requestCanceler interface {
CancelRequest(*http.Request)
}
func canceler(client transport.Client, req *http.Request) func() {
func canceler(client transport.Sender, req *http.Request) func() {
rc, ok := client.(requestCanceler)
if !ok {
return func() {}

Просмотреть файл

@ -36,7 +36,7 @@ func Do(ctx context.Context, client transport.Sender, req *http.Request) (*http.
client = http.DefaultClient
}
// Request cancelation changed in Go 1.5, see cancelreq.go and cancelreq_go14.go.
// Request cancelation changed in Go 1.5, see canceler.go and canceler_go14.go.
cancel := canceler(client, req)
type responseAndError struct {