pkg/httputil: simplify RequestCanceler args

release-3.1
Gyu-Ho Lee 2016-08-14 14:35:50 -07:00
parent 1b5a129bbe
commit ae4b4109b2
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import (
"net/http"
)
func RequestCanceler(rt http.RoundTripper, req *http.Request) func() {
func RequestCanceler(req *http.Request) func() {
ch := make(chan struct{})
req.Cancel = ch