Procházet zdrojové kódy

pkg/httputil: simplify RequestCanceler args

Gyu-Ho Lee před 9 roky
rodič
revize
ae4b4109b2
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      pkg/httputil/httputil.go

+ 1 - 1
pkg/httputil/httputil.go

@@ -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